Selenium, how to control the execution speed of the test?

2

Creating automated tests in C # using Selenium, I try to know how to control the execution speed of the test?

    
asked by anonymous 07.07.2015 / 17:23

2 answers

2

Have you tried using the "setSpeed" or "setTimeOut" commands?

They basically serve to control the time and speed of running scripts.

Link to more information about:

    
27.07.2015 / 19:40
0

Use implicit waits to control the execution flow. Putting sleeps is not a good practice because it really hurts the test suite.

With the implicit waits (waiting for an element to appear, waiting for the page to load), some command will not run before the context is ready.

    
22.11.2017 / 21:41