TestNG数据提供程序中的NumberFormatException

时间:2018-08-20 11:40:24

标签: java selenium selenium-webdriver testng testng-dataprovider

我已经使用以下方法在应用程序中输入凭据。

public LoginPage enterCredentials(String userName, String password){
        actions.EnterText(userId, userName)
               .EnterText(userPassword, password);
        return this;

其中EnterText的定义如下:

 public Actions EnterText(ObjectLocator locator, String text){
            driverWait(Integer.parseInt(getProperties("Control_Wait")));
            FindElement(locator).clear();
            FindElement(locator).sendKeys(text);
            return this;
        }

在Test类中,我编写了以下代码

    public class LoginTests extends TestSetup{
    @Test(dataProvider="Credentials")
    public void loginProxy(String usrName, String usrPassword){
        LoginPage login = new LoginPage();
        login.navigateUrl()
             .enterCredentials(usrName, usrPassword)
             .clickLogin();
    }
    @DataProvider(name ="Credentials")
    public Object[][] getData(){
        Object[][] data = new Object[3][2];
        data[0][0] = "11";
        data[0][1] = "Priya";
        data[1][0] = "108";
        data[1][1] = "Logan";
        data[2][0] = "36";
        data[2][1] = "Geller";
        return data;
    }

我收到以下错误:

  

失败:loginProxy(“ 11”,“ Priya”)java.lang.NumberFormatException:   在java.lang.Integer.parseInt(null)处为null   java.lang.Integer.parseInt(未知来源)

请帮助解决该问题。据我所知,此错误是由于整数到字符串的转换引起的。但是无法解决同样的问题。

1 个答案:

答案 0 :(得分:-1)

数字格式异常 Integer 类的 parseInt 方法引发。这肯定表明方法getProperties返回键“ Control_Wait”的'String'值,返回null,并且可能有'n'个原因。

属性文件中没有密钥。

属性文件中不存在键的值。

getProperties()获取键值的逻辑是错误的。

属性文件未正确初始化或加载

public class PropertyTest {

public static Properties properties = new Properties();

private static void loadProperties() {
    FileInputStream fis;
    try {
        fis = new FileInputStream("src/test/resources/property/android.properties");
        properties.load(fis);
        fis.close();
    } catch (FileNotFoundException e) {

    } catch (IOException e) {

    }
} 
public static String getProperty(String key) {
    String value = "";
    if (key != "") {
        loadProperties();
        try {
            if (!properties.getProperty(key).trim().isEmpty())
                value = properties.getProperty(key).trim();
        }

        catch (NullPointerException e) {

        }
    }

    return value;
}       

}
  
    

用法

  
driverWait(Integer.parseInt(getProperty("Control_Wait")));