我在下面发布了一些到目前为止已经完成的示例代码,但我遇到了异常java.lang.NullPointerException
。
基本类别:
public class TestBase {
public static WebDriver driver= null;
@BeforeSuite
public void initialize(){
System.setProperty("webdriver.chrome.driver","...chromedriver_win32\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
driver.get("abcd.com");
}
@AfterSuite
public void TearDownTest()
{
TestBase.driver.quit();
}
}
登录页面:
public class LoginPage {
WebDriver driver;
public LoginPage(WebDriver driver)
{
this.driver= driver;
}
@FindBy(how=How.XPATH, using="//*[@id='email_id']") WebElement EmailTextBox;
@FindBy(how=How.XPATH, using="//*[@id='password']")WebElement PassworTextBox;
@FindBy(how=How.XPATH, using="//*[@id='frm_login']/div[4]/input") WebElement LoginButton;
public void setemail(String strmail)
{
EmailTextBox.sendKeys(strmail);
}
public void setpwd(String strpwd)
{
try
{
PassworTextBox.sendKeys(strpwd);
}
catch (TimeoutException e)
{
System.out.println("Time out exception " + e);
}
catch (ElementNotSelectableException e) {
System.out.println("Element not selectable exception " + e);
} catch (NoSuchElementException e) {
System.out.println("No such element found " + e);
} catch (ElementNotVisibleException e) {
e.printStackTrace();
} catch (Exception e) {
System.out.println("Something Wrong " + e);
}
}
public void ClickLoginBtn()
{
LoginButton.click();
}
}
LoginTest类:
public class LoginTest extends TestBase{
@Test
public void init()
{
System.out.println("In the init method");
LoginPage lg=PageFactory.initElements(driver, LoginPage.class);
lg.setpwd("123123");
lg.setemail("abc@gmail.com");
lg.ClickLoginBtn();
}
}
在设置用户名和密码时,我得到了NullPointerException
。请你帮助我好吗?
我是使用PageFactory来POM的新手,所以我不知道如何解决它,但是如果有人可以帮助我,那将对我有很大帮助。
答案 0 :(得分:1)
您不应该初始化 WebDriver 实例,即两次 driver
,如下所示:
public static WebDriver driver= null;
和
WebDriver driver=new ChromeDriver();
将全局声明保留为:
public static WebDriver driver= null;
将行更改为:
driver=new ChromeDriver();
答案 1 :(得分:0)
尝试在driver.get("abcd.com");
之后添加超时,以确保页面已完成加载,并且可以找到定义EmailTextBox和PassworTextBox的WebElement。
或像这样使用WebDriverWait
new WebDriverWait(driver, 10))
.until(ExpectedConditions.visibilityOf(By.id("someid")));
答案 2 :(得分:0)
我希望您已经像这样初始化了页面工厂元素
public LoginPage(WebDriver driver) {
this.driver = driver;
PageFactory.initElements(driver, this);
}
在您的Test课中, 我会放
LoginPage lg =新的LoginPage(驱动程序);
Read more here:
https://www.seleniumeasy.com/selenium-tutorials/page-factory-pattern-in-selenium-webdriver