-3
NullPointerException
を得るには、すべてのスクリプトを途中で実行してください。私はxpath
プロパティファイルに書かれており、私はBeforeSuite
のプロパティファイルをロードしています。要素が存在し、ページも存在します。ロケーターにnull
を入力してください。プロパティファイルが正しくロードされていません
NullPointerException
を得るには、すべてのスクリプトを途中で実行してください。私はxpath
プロパティファイルに書かれており、私はBeforeSuite
のプロパティファイルをロードしています。要素が存在し、ページも存在します。ロケーターにnull
を入力してください。プロパティファイルが正しくロードされていません
あなたのプロパティファイルがあなたの要素の正確な値を与えていない可能性があります。 プロパティ名を指定してこの関数を呼び出してみてください。
public static String getProperty(String propertyname)
{
Properties prop = new Properties();
InputStream input = null;
try {
input = new FileInputStream(("path of your property file"));
// load a properties file
prop.load(input);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
System.out.println(prop.getProperty(propertyname));
//Return the property value
return prop.getProperty(propertyname);
}
ここで、質問をするためのガイドを読むときです。 http://www.catb.org/~esr/faqs/smart-questions.html – FaithReaper