Selenium通过xpath查找元素

时间:2015-12-07 18:22:48

标签: java html selenium xpath inspect-element

我正在尝试使用selenium登录。

<form id="main-login-form" class="login-form form-container">
<input       name="username" id="username-input" placeholder="Username"   class="form-input"    autofocus="">

我正在使用该代码。

  import java.util.concurrent.TimeUnit;

import org.openqa.selenium。*; import org.openqa.selenium.htmlunit.HtmlUnitDriver;

公共类表 {

public static void main(String[] args) {
    // Create a new instance of the html unit driver
    // Notice that the remainder of the code relies on the interface, 
    // not the implementation.
    WebDriver driver = new HtmlUnitDriver();
     driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    // And now use this to visit Google
    driver.get("https://focus.nassau.k12.fl.us/focus/");


    // Find the text input element by its name
    WebElement element = driver.findElement(By.xpath("//input[@id='username-input']"));
    element.sendKeys("mcdonaldje");



    System.out.println(driver.getCurrentUrl());

    // Now submit the form. WebDriver will find the form for us from the element


    driver.quit();
}

我一直收到此错误

 Exception in thread "main" org.openqa.selenium.NoSuchElementException:
 Unable to locate a node using //input[@id='username-input']
 For documentation on this error, please visit:      
 http://seleniumhq.org/exceptions/no_such_element.html
 Build info: version: '2.48.2', revision: '41bccdd', time: '2015-10-09 19:59:12'

2 个答案:

答案 0 :(得分:0)

你做对了!

In [16]: from selenium import webdriver

In [17]: driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)

In [18]: driver.get("https://focus.nassau.k12.fl.us/focus/");

In [19]: el = driver.find_element_by_xpath("//input[@id='username-input']")

In [20]: el.send_keys("mcdonaldje")

In [21]: driver.current_url
Out[21]: u'https://focus.nassau.k12.fl.us/focus/'

答案 1 :(得分:0)

点击URL后,请等待它加载所有元素,以便您的网页元素显示在页面上。 在driver.get之后的任何等待条件(“https://focus.nassau.k12.fl.us/focus/”);效果很好。