I have list of https URLs, now my requirement is to take the screen shot of web pages associated with URLs using java code.
And just for the modularity , I have partitioned my requirement in to three cases:
- Automated login in to all the mentioned URLs.
When I run the java code it should take the individual URL and pass the user name and password to the URL.If the user name and password are correct then the webpage associate d with the URL should be displayed. Note: The request from browser to webserver will be redirected through the siteminder so called SSO configuration
- Take the screen shot of opened URL.
Now I have webpage opened ,Take the screen shot of the webpage.
- Save the screen shots and send it over email.
All the captured screenshots should be copied into a document say PDF and send the document over e mail
Now among the three above mentioned requirements the second has been done partially as iam able to take the screen shot of all the URLs.
Note : Heared of selenium web driver etc but I don't like to go with anything other than normal java stuff.
Thanks in Advance