나는 Selenium
을 처음 사용하고 있으며 경고 텍스트를 인쇄하고 경고를 수락하기 위해 다음 코드를 작성했습니다. 나는 예외 다음 얻을Java Selenium - Chrome과 Firefox 모두에서 경고를받을 수 없습니다.
public class AlertPractice {
public static void main(String[] args) throws InterruptedException {
WebDriver driver = new FirefoxDriver();
driver.get("http://output.jsbin.com/usidix/1");
driver.findElement(By.cssSelector("input[value=\"Go!\"]")).click();
Thread.sleep(1000);
String S = driver.switchTo().alert().getText();
Thread.sleep(1000);
driver.switchTo().alert().accept();
System.out.println(S);
driver.close();
}
:
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output....
및 크롬 드라이버과 실행에 나는 예외 아래 얻을 :
이Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: cannot determine loading status from unexpected alert open (Session info: chrome=53.0.2785.101) (Driver info: chromedriver=2.21.371459 ...
어떤 도움이 될 것이다 상당한.
여전히 Chromedriver에 대해 동일한 오류가 발생하고 있습니다. –
그리고 Firefox는 어떻습니까 ?? 그리고 같은 오류 또는 TimeoutException ?? –
예. 여전히 같은 오류 –