What's the default chromedriver commandtimeout value?

后端 未结 1 1908
说谎
说谎 2021-01-21 13:30

http://selenium.googlecode.com/svn/trunk/docs/api/dotnet/html/M_OpenQA_Selenium_Chrome_ChromeDriver__ctor_4.htm

Does anyone know what the default chromedriver commandtim

相关标签:
1条回答
  • 2021-01-21 13:39

    Remember Selenium is open source.

    The answer to your question can be found by inspecting the ChromeDriver source to find out that if a CommandTimeout value is not given, it reverts to RemoteWebDriver.DefaultCommandTimeout, which we can see is 60 seconds.

    This is the same for all of the drivers (at least in the .NET library)

    0 讨论(0)
提交回复
热议问题