-1
我需要這樣做 1. http://the-internet.herokuapp.com/dynamic_loading/1 2.使用顯式等待30秒 3.單擊開始按鈕,驗證的Hello World!使用顯式的等待和驗證你好世界
我寫了下面的代碼,但element.getText爲null。
driver.get("http://the-internet.herokuapp.com/dynamic_loading/1");
WebDriverWait wait=new WebDriverWait(driver, 30);
WebElement all=driver.findElement(By.xpath("//*[@id='start']/button"));
all.click();
WebElement element=wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//*[@id='finish']/h4")));
driver.findElement(By.xpath("//*[@id='finish']/h4"));
String text=element.getText();
System.out.println("hi:"+text);
//assertEquals("Hello World!", text);