我在硒一個新的學習和嘗試點擊下拉填充列表,但它不斷給我運行時異常:線程「main」 org.openqa無法點擊下拉
例外。 selenium.ElementNotVisibleException: 元素當前不可見,因此可能無法與之交互)
請幫助。以下是我正在執行的代碼。
WebDriver dr=new FirefoxDriver();
dr.get("https://jqueryui.com/selectmenu/");
dr.manage().window().maximize();
dr.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
dr.switchTo().frame(dr.findElement(By.className("demo-frame")));
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("speed- menu"))).click();
哪些元素是你想點擊的網頁?謝謝 – DebanjanB