Selenium WebDriver中的空指针异常

时间:2014-04-17 03:13:41

标签: selenium

我正在使用下面的代码逐个点击导航链接,直到它通过使用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;
    }
}

1 个答案:

答案 0 :(得分:12)

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

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

您已宣布driver两次。然后,您在driver中使用未初始化的isElementPresent

我认为你可以解决这个问题如下:

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