0
如何獲得提示使用硒的標題webdriver的使用硒的webdriver
我的代碼檢查工具提示的標題:
starred = driver.findElement(By.xpath(".//*[@id='headerStarButton']/span"));
builder = new Actions(driver);
mouseover = builder.clickAndHold(starred).build();
mouseover.perform();
String title= starred.getAttribute("title");
System.out.println("title::" + title);
而且,有什麼例外? – Saifur
不能看到給定'span'的'title'屬性。 – xyz
所以可能tooltip沒有加載? – Saifur