即使已定义变量,也无法识别变量

时间:2016-10-18 00:58:32

标签: java eclipse selenium selenium-webdriver cucumber

我正在尝试使用Eclipse和黄瓜通过selenium webdriver进行自动化。运行我的功能文件时出现以下错误

  

java.lang.Error:未解决的编译问题:       司机无法解决

如下所示,在我的Tests_Steps.java类中,我已正确声明变量“driver”。我还将对象分配给了类的实例(FirefoxDriver)。以下是我的代码。

package stepDefinition;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;

public class Tests_Steps {

@Given("^User is on the Home Page$")
    public void user_is_on_the_Home_Page() throws Throwable {
        WebDriver driver=new FirefoxDriver();
        driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);
        driver.get("http://www.gmail.com/login");
    }

    @When("^User Clicks on the Login$")
    public void user_Clicks_on_the_Login() throws Throwable {
        driver.findElement(By.xpath(".//*[@id='login']")).click();
    }

    @When("^User enters UserName and Password$")
    public void user_enters_UserName_and_Password() throws Throwable {
        driver.findElement(By.id("login")).sendKeys("ab24146_111");
        driver.findElement(By.id("psw")).sendKeys("Password1");
        driver.findElement(By.id("loginButton")).click();
    }

    @Then("^Message displayed LogIn Successfully$")
    public void message_displayed_LogIn_Successfully() throws Throwable {
        System.out.println("Login Successfully");
    }

由于某种原因,我的驱动程序变量在第二步和第三步中未被识别。我看到红色的波浪形线条,当我将鼠标悬停在红线上时,它说“驱动程序无法解决”在第一步它的工作正常。

你能帮助我做些什么。

2 个答案:

答案 0 :(得分:1)

您已在user_is_on_the_Home_Page()方法中声明了您的变量,因此它的范围仅限于该方法,并在方法完成时被销毁。

移动到类的实例变量并在构造函数中初始化它。

答案 1 :(得分:1)

  

java.lang.Error:未解决的编译问题:驱动程序无法解析

实际上,您已在本地WebDriver内声明user_is_on_the_Home_Page()变量,因此这是有限的,并且仅适用于此方法。

您应该全局声明此变量,该变量可用于所有这些方法,如下所示: -

public class Tests_Steps {

  WebDriver driver = null;

  @Given("^User is on the Home Page$")
  public void user_is_on_the_Home_Page() throws Throwable {
    driver=new FirefoxDriver();
    driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);
    driver.get("http://www.gmail.com/login");
  }

  ------------
  ------------
}