我有一个Base类,其中包含一个打开我的URL的方法,在我的测试用例中称为@BeforeMethod。该方法采用浏览器类型的字符串参数来确定调用哪个浏览器。我试图在我的xml启动文件中设置一个参数,该参数可以在我的@BeforeMethod中作为openURL方法的参数输入。
这是我的XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<suite name="FullRegressionSuite" parallel="false">
<listeners>
<listener class-name="reporting.CustomReporter"></listener>
</listeners>
<test name="Test">
<parameter name ="browserType" value="Chrome"/>
<classes>
<class name="reporting.reporterTest"/>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->
这是我的测试:
@Listeners(CustomListener.class)
public class reporterTest extends Base {
@Test
public void testOne() {
Assert.assertTrue(true);
}
@Test
public void testTwo() {
Assert.assertTrue(false);
}
@Parameters({ "browserType" })
@BeforeMethod
public void setUp(String browserType) throws InterruptedException {
System.out.println(browserType);
openURL(browserType);
}
@AfterMethod
public void tearDown() {
driver.quit();
}
}
这是我的基类:
public class Base {
public static WebDriver driver = null;
//CALL WEB BROWSER AND OPEN WEBSITE
public static void openURL(String browser) throws InterruptedException {
//launches browser based on argument given
try{
if (browser == "Chrome") {
System.setProperty("webdriver.chrome.driver", "/Users/rossdonohoe/Desktop/SeleniumJava/Drivers/chromedriver");
driver = new ChromeDriver();
}
else if (browser == "Firefox") {
System.setProperty("webdriver.gecko.driver", "/Users/rossdonohoe/Desktop/SeleniumJava/Drivers/geckodriver");
driver = new FirefoxDriver();
}
else {
System.out.println("Error: browser request not recognized");
}
driver.manage().deleteAllCookies();
driver.manage().window().maximize();
driver.get("https://www.google.com");
}
catch(Exception E) {
E.printStackTrace();
}
}
}
我的@BeforeMethod肯定会收到参数,因为我打印它的值来检查,我在控制台中得到“Chrome”。但是,openURL在“删除所有cookie”行中失败并出现空指针异常(我的行“错误:浏览器请求未被识别”正在控制台中打印),表明该字符串未作为参数到达openURL。有谁看到我做错了什么?
由于browser
是一个String变量,你需要使用equals
或contains
或equalsIgnoreCase
来检查你所提取的browser
是“Chrome”还是“Firefox”。
因此,您需要使用:if(browser.equals("Chrome"))
和if(browser.equals("Firefox"))
作为条件而不是您使用的条件。