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.
現在、JavaでSelenium 2.0a2を使用して、HtmlUnitDriverインスタンスを使用してインターネットにアクセスしています。私が直面している問題は、遅いWebサイトにアクセスしようとすると、要求がタイムアウトすることです。WebDriverがタイムアウト例外をスローする前に待機する時間を増やすにはどうすればよいですか?
HtmlUnitDriver
wait = new WebDriverWait(driver、10); wait.until(new VisibilityOfElementLocated(By.id( "whatever")));
10はタイムアウトが秒です。