我正在尝试自动化一个场景,其中,我想一次登录到应用程序&然后进行操作而无需重新登录。
考虑一下,我有代码在特定类的@BeforeSuite方法中登录应用程序。
public class TestNGClass1 {
public static WebDriver driver;
@BeforeSuite
public static void setUp(){
System.setProperty("webdriver.chrome.driver", "D://Softwares//chromedriver.exe");
driver = new ChromeDriver();
//driver = new FirefoxDriver();
driver.manage().window().maximize();
driver.get("https://www.myfitnesspal.com");
}
@AfterSuite
public static void close(){
driver.close();
}
}
我在TestNGClass2中有@test方法,它基本上试图点击一些登录按钮。
public class TestNGClass2 extends TestNGClass1 {
public static WebDriver driver;
@Test
public static void login(){
System.out.println("Entering the searchQuery Box");
WebElement signUpWithEmailBtn = driver.findElement(By.xpath(".//*[@id='join']/a[2]"));
System.out.println("srchTxtBox Box");
signUpWithEmailBtn.click();
}
}
我有另一个类TestNGClass3,它有另一个@Test方法,需要在TestNGClass2完成后运行。
public class TestNGClass3 extends TestNGClass1{
public static WebDriver driver;
@Test
public static void signIn(){
WebElement emailAddress = driver.findElement(By.id("user_email"));
emailAddress.clear();
emailAddress.sendKeys("asdsa@gmail.com");
WebElement password = driver.findElement(By.id("user_password"));
password.clear();
password.sendKeys("sdass");
WebElement continueBtn = driver.findElement(By.id("submit"));
continueBtn.click();
}
}
testng.xml文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite">
<test name="Regression Test">
<classes>
<class name="com.test.TestNGClass2" />
<class name="com.test.TestNGClass3" />
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->
我的做法是对的,因为我得到了#Null Pointer&#34;代码到达&#39; login&#39; TestNGClass2的方法?
答案 0 :(得分:4)
我认为你只需要在/^[0-9]*[\u007C-]{1}[0-9]*$/.test('a string')
和TestNGClass2
TestNGClass3
您已经将public static WebDriver driver;
存储在基类driver
中,所以当您在其他类中拥有该行时,您基本上隐藏了实例化的那一行。
我还考虑将基类访问修饰符更改为TestNGClass1
,因为您可能不希望不是该基类的子类的类访问protected
。