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.
私は WebDriverBackedSelenium を使用しています
selenium.setTimeout() コマンドが完全に無視されていることに気付きました。他の誰かがこの問題に直面していますか? 解決策はありますか?
解決するための私見の2つの可能性:
WebDriver driver; driver = new FirefoxDriver(); driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
2 番目の方法:
Thread.sleep(...miliseconds...)
目的に応じて使用します。