• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

login into website dynamically instead of filling the parameters

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI frens

i'm in need of a utility in which i need to write a code to login into the website dynamically instaed of filling the form
i.e. as soon as my utility is made to run the home page of the website should open(authentication should be done through code )

for example lets consider a login page of gmail , the code should fill the crendentials dynamically and i should enter the inbox page of it ..
this is just for an example sake
i'll be thankful if any suggestions

Thanks
 
Ranch Hand
Posts: 91
Eclipse IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think this can better be done using JavaScript. I would advise you to take a look at GreaseMonkey to accomplish this..
 
Girish kumar.v
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
okay can you guide me in it ..
 
Muthukrishnan Manoharan
Ranch Hand
Posts: 91
Eclipse IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Girish,
First of all this is not the appropriate forum for the subject.. Please read this

And read this to write a simple Greasemonkey script.. There are lot many scripts available online.. In your case, it is basically finding out the text box for username and password(using HTML DOM) and filling it with the details and do a form.submit() or button.click()..

Muthu
 
reply
    Bookmark Topic Watch Topic
  • New Topic