在我的 selenium webdriver 代码中,我试图让我的页面在开始查找元素并驱动它们之前等待它加载(在用户名和密码中输入文本)
我尝试使用driver.waitforpagetoload();
但它返回了这个错误
Error 1 'OpenQA.Selenium.IWebDriver' does not contain a definition for 'waitforpagetoload' and no extension method 'waitforpagetoload' accepting a first argument of type 'OpenQA.Selenium.IWebDriver' could be found (are you missing a using directive or an assembly reference?)
我需要添加什么类型的参考?
(用 C# 编码)