I need to write a Java autotest to calculate the authorization time to the site. What if, for example, authorization takes more than 10 seconds, then issue a warning to the console.
Tell me, please, ideas for the implementation of this test?
I need to write a Java autotest to calculate the authorization time to the site. What if, for example, authorization takes more than 10 seconds, then issue a warning to the console.
Tell me, please, ideas for the implementation of this test?
The first thing that comes to mind is to check the presence of an element on a page after 10 seconds, which is displayed only when the user has logged in.
Source: https://ru.stackoverflow.com/questions/532158/
All Articles