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

时间:2016-07-06 21:25:14

标签: java internet-explorer selenium browser-automation selenium-iedriver

我正在开发一个应用程序,用于使用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()方法。单独地(当注释掉一个或另一个时),主方法看不到驱动程序路径的放置。在将Login类转换为Application的扩展之前,此驱动程序路径是可见的,并且在此代码的先前版本中工作。

如何在当前代码中定位文件路径,以便主方法可以看到它?我觉得我在这里错过了一些东西。

1 个答案:

答案 0 :(得分:1)

在类中将变量声明为Public Static Final,您应该能够在main方法(classname.variablename)中访问它。 如果您不使用Property文件,这将是理想的地方。

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

注意:我目前无权发表评论,因此不得不发帖。但这可能不是一个完整的答案。