在 Selenium 中使用 XPath 在 HTML DOM 中找不到某个元素时,会引发哪种异常?
如果使用 xpath 在 HTML DOM 中找不到某个元素,则会引发 NoSuchElementException。当 WebDriver 尝试定位某个在 DOM 中不存在的 Web 元素时,会引发此异常。如果我们为某个元素创建了不正确的 xpath,通常会遇到此异常。
下图显示了 NoSuchElementException 的示例。
示例
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; public class ElemntsText{ public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); //implicit wait driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS); //URL launch driver.get("https://tutorialspoint.com/upsc_ias_exams.htm"); //identify an element with tagname WebElement e = driver.findElement(By.tagName("h2")); String str = e.getText(); driver.quit(); } }
输出
广告