2
Creating automated C# testing using Selenium, I want to know how to control test execution speed?
2
Creating automated C# testing using Selenium, I want to know how to control test execution speed?
2
Have you tried using "setSpeed" or "setTimeOut commands"?
They basically serve to control the time and speed of execution of scripts.
Follow link with more information about: http://software-testing-tutorials-automation.blogspot.com.br/2013/03/use-of-setspeed-and-settimeout-commands.html
0
Use implicit waiting to control the flow of execution. Putting sleeps is not a good practice as it greatly burdens the test suite.
With implicit waits (wait until an element is displayed, wait for the page to load) no command will be executed before the context is ready.
Browser other questions tagged c# testing selenium
You are not signed in. Login or sign up in order to post.
What you have so far?:
– PauloHDSousa
So far I’m using Thread.Sleep to wait for the page to load before executing the next command!
– rsantos