I need to create an automated process (preferably using Java) that will:
- Open browser with specific url.
- Login, using the username and password specified.
- Follow one of the links on the page.
- Refresh the browser.
- Log out.
This is basically done to gather some statistics for analysis. Every time a user follows the link a bunch of data is generated for this particular user and saved in database. The thing I need to do is, using around 10 fake users, ping the page every 5-15 min.
Can you tink about simple way of doing that? There has to be an alternative to endless login-refresh-logout manual process…
Try Selenium.