首页 > 解决方案 > 为什么我会收到 java.lang.IllegalArgumentException:当 XPath 为空时找不到元素错误消息

问题描述

我创建了一个 xpath.properties 文件并将其仅存储在该位置。格式如下:

objuserName=//input[@placeholder='Username']
objpassword=//input[@placeholder='Password']
objloginButton=//a[@onclick='return ValidateLogin()']

编写代码以加载此属性文件并输入用户名和密码,然后单击登录按钮。代码成功打开浏览器,但在输入用户名时,它给出“线程“主”java.lang.IllegalArgumentException:当 XPath 为空时找不到元素。”

public class Login {
static Properties objprop = new Properties();

static void PropertyManager() throws IOException{
    File file = new File("C:\\proj-Automation\\financialsys\\abcd\\src\\test\\resources\\xpath.properties");
    FileInputStream fileInput = null;
    try{
        fileInput = new FileInputStream(file);
    }catch (FileNotFoundException e){
    }
    Properties objprop = new Properties();
    try{
        objprop.load(fileInput);
    }catch(IOException e){
        }
//objprop.load(objfile);
}

//When user opens the "firefox" browser
void OpenBrowser(String browsername) throws IOException {
    // TODO Auto-generated method stub
    System.setProperty("webdriver.chrome.driver",config.getParameterValue("chrome_driver_exe_path_32bit"));
    config.driver=new ChromeDriver();
}
public void EnterUserName(String username){
    config.driver.findElement(By.xpath(objprop.getProperty("objuserName"))).sendKeys(username);

}
public void PageMaximise(){
    config.driver.manage().window().maximize();
}
//code for entering the password and clicking on login button
public static void main(String[] args) throws IOException, InterruptedException {
    // TODO Auto-generated method stub

    Login LF = new Login();
    Login.PropertyManager();
    LF.OpenBrowser("CH32");
    LF.EnterURL("http://localhost:90/financialsys");
    LF.PageMaximise();
    LF.EnterUserName("dummycfo");
    LF.EnterPassword("passw0rd");
    LF.ClickLoginButton();
}
}

config.driver.findElement(By.xpath(objprop.getProperty("objuserName"))).sendKeys(username); 行的 IllegalArgumentException 错误的原因可能是什么 和 LF.EnterUserName("dummycfo");

标签: javaseleniumerror-handling

解决方案


static void PropertyManager() throws IOException{
    File file = new File("C:\\proj-Automation\\financialsys\\abcd\\src\\test\\resources\\xpath.properties");
    FileInputStream fileInput = null;
    try{
        fileInput = new FileInputStream(file);
    }catch (FileNotFoundException e){
    }
    try{
        objprop.load(fileInput);
    }catch(IOException e){
        }
//objprop.load(objfile);
}
remove Properties objprop = new Properties(); this line from the above method, you are initializing objprop variable with a new object, instead of using the global one which you already have on the top.

推荐阅读