Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请在http://clearspace.openqa.org的论坛中搜索日志窗口中的错误详细信息。错误消息是:权限被拒绝
当我尝试执行时出现错误Selenium.IsElementPresent(ticketLocator)
Selenium.IsElementPresent(ticketLocator)
帮我!!
是的得到了答案。基本上用硒我点击一个按钮,然后直接调用它
而不是等待页面加载。
Selenium.Click(elementId); Selenium.WaitForPageToLoad(milliseconds.ToString()); // milliseconds
所以现在点击后我等待 3 秒钟,它开始正常工作。