Selenium WebDriver中出现空指针异常



我正在使用下面的代码逐个点击导航链接,直到它通过WebDriver到达终点,但它抛出了NullPointerException,我很困惑,因为我已经初始化了,仍然面临这个问题,请帮助。

import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;

public class Exercise_dice {
    static WebDriver driver;
    public static void main(String[] args) {
        WebDriver driver=new FirefoxDriver();
        driver.get("http://www.dice.com");
        driver.findElement(By.xpath("//*[@id='FREE_TEXT']")).sendKeys("selenium");
        driver.findElement(By.xpath("//*[@id='searchSubmit']")).click();
        String part1= "//*[@id='yui-main']/div/div[1]/div[1]/div[1]/a[";
        String part2= "]";
        int i=1;
        while(isElementPresent(part1+i+part2)){
            String text= driver.findElement(By.xpath(part1+i+part2)).getText();
            System.out.println(text);
            driver.findElement(By.xpath(part1+i+part2)).click();
            i++;
        }
    }
    public static boolean isElementPresent(String element_xpath){
        int count=driver.findElements(By.xpath(element_xpath)).size();
        if (count == 0)
            return false;
        else 
            return true;
    }
}

我相信,您的问题从这里开始:

static WebDriver driver;
public static void main(String[] args) {
    WebDriver driver=new FirefoxDriver();

您已两次声明driver。然后在isElementPresent中使用未初始化的driver

我认为你可以如下修复:

static WebDriver driver;
public static void main(String[] args) {
    driver=new FirefoxDriver();

最新更新