How can I set the print speed of selenium chrome driver?

I have a ui test that uses selenium chrome driver. I want the speed of filling out the form to be slower. I have googled, but I could not figure out how to do this.

Does anyone know how to do this?

+4
source share
1 answer

In Selenium 1 you can use setSpeed , in Selenium 2 (aka WebDriver), unfortunately, there is no such option, at best you can use Implicit expectations . However, it is actually not recommended to slow down Selenium testing for all tests, you should add expectations only to tests in which you really need to wait for the completion of any action.

+3
source

Source: https://habr.com/ru/post/1547405/


All Articles