Почему я получаю java.lang.IllegalArgumentException: не удается найти элементы, когда в XPath указано нулевое сообщение об ошибке - PullRequest
0 голосов
/ 14 декабря 2018

Я создал файл xpath.properties и сохранил его только в том месте.Формат таков:

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

Записан код для загрузки этого файла свойств, введите имя пользователя и пароль и нажмите кнопку входа.Код открывает браузер успешно, но при вводе имени пользователя выдает «Исключение в потоке» main «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();
}
}

В чем может быть причина ошибки IllegalArgumentException в строке config.driver.findElement (By.xpath (objprop.getProperty ("objuserName"))). SendKeys (username);и LF.EnterUserName ("dummycfo");

Ответы [ 2 ]

0 голосов
/ 16 декабря 2018

Пожалуйста, попробуйте приведенный ниже код, чтобы получить ключ из файла свойств по приведенному ниже фрагменту кода:

public static String fetchLocatorValue(String key) throws IOException {
    FileInputStream file = new FileInputStream(Path of perperty file);
    Properties property = new Properties();
    property.load(file);
    return property.getProperty(key).toString();

}
0 голосов
/ 14 декабря 2018
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.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...