我想在selenium的多次测试中共享一个常量变量
例如String text = "the shared text over tests";
答案 0 :(得分:1)
您可以将其定义为包含所有共享内容的类:
public class TestConstants {
public static final String SHARED_TEXT = "My shared text";
}
然后在您的测试中,您可以简单地将其引用为:
TestConstants.SHARED_TEXT.equals(actualText);
或者你需要它
答案 1 :(得分:0)
你可以像这样定义你的常量类:
public class Constants {
// now here you can define your constant variables
public static text = "the shared text over tests";
}
现在,您可以在包的任何类中使用常量变量,如下所示:
String constantText = Constants.text;