文件路径声明对 Main 方法中的方法调用不可见

File path declaration not visible to Method call in Main method

我正在开发一个应用程序,该应用程序将用于使用 Selenium 在 Java 中自动执行表单填写操作。我目前已经将两者都设置为可以在拇指驱动器上携带。我的代码如下:

package AutoFill;

import java.io.File;
import java.util.concurrent.*;
import javafx.application.Application.*;
import javafx.application.*;
import javafx.stage.Stage;
import org.openqa.selenium.*;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.ie.*;
import org.openqa.selenium.ie.InternetExplorerDriver.*;

public class Login extends Application {

    public static final File file = new File("E:/IEDriverServer_Win32_2.53.1/IEDriverServer.exe");      //path to IEDriver on USB stick
    public static final DesiredCapabilities desCaps = DesiredCapabilities.internetExplorer();           //new desired capabilities object to set IEDriver run params
    public static final WebDriver driver = new InternetExplorerDriver(desCaps);                         //new IEDriver instance
    public static final String url = new String("url_here");                                    //starting url  


@Override
public void start(Stage primaryStage) { 
    primaryStage.show();

}

public void setup() {

    File file = new File("E:/IEDriverServer_Win32_2.53.1/IEDriverServer.exe");
    System.setProperty("webdriver.ie.driver", file.getAbsolutePath());               //force IEDriver path
    setIEDesCaps(desCaps);                                                           //run cap setter method
    driver.findElement(By.tagName("html")).sendKeys(Keys.chord(Keys.CONTROL,"0"));   //set screen zoom to 100% to resolve webdriver errors
    driver.get(url);                                                                 //navigate to url



}


public void setIEDesCaps(DesiredCapabilities desCaps) {                              //setter method to establish IE webdriver run params                

    desCaps.setPlatform(org.openqa.selenium.Platform.WINDOWS);
    desCaps.setCapability("EnableNativeEvents", false);
    desCaps.setCapability("ignoreZoomSetting", true);
    desCaps.setJavascriptEnabled(true);

}

}

当运行这段代码(当然有真正的url)时,Eclipse产生如下错误:

 java.lang.IllegalStateException: The path to the driver executable must be set by the webdriver.ie.driver system property;

我实际上已经尝试在两个不同的实例中手动设置驱动程序路径 - 在一开始作为静态变量(这似乎是最明智的),以及在主要 setup() 方法中。单独地(当注释掉一个或另一个时),驱动程序路径的放置对 main 方法是不可见的。在我将 Login class 变成 Application 的扩展之前,此驱动程序路径是可见的并且在此代码的先前版本中有效。

如何定位当前代码中的文件路径,使其对 main 方法可见?我觉得我在这里错过了什么。

在 class 中将变量声明为 Public Static Final,您应该可以在 main 方法(classname.variablename) 中访问它。 如果您不使用 属性 文件,那将是理想的地方。

如果您可以分享 Main() 方法,我可以进一步研究。

注意:我目前没有发表评论的特权,因此不得不 post。虽然这可能不是一个完整的答案。