V
V
Valera Figol2017-05-03 14:42:25
C++ / C#
Valera Figol, 2017-05-03 14:42:25

What should be used instead of ImplicitlyWait?

Which is better to use instead:

driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(10));

to wait for the page to load?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Valera Figol, 2017-05-03
@Kamrit

driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(20);

G
gill-sama, 2017-05-03
@gill-sama

ExplicitWaits. Allows you to wait for a specific element on the page to load. Unfortunately, it is impossible to find out whether the page has fully loaded.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question