最近开始玩Selenium页面对象模式。我理解Selenium页面对象模式和PageFactroy的概念。但令我困惑的是它提供的缺乏灵活性。例如,页面对象模式如何为简单的定位器参数提供支持?如何使用Selenium Page Object模式处理动态定位器?
要更好地理解这个问题,请采取以下方案。
我有登录页面。
public class LoginPage {
private final WebDriver driver;
public LoginPage(WebDriver driver) {
this.driver = driver;
}
By usernameLocator = By.id("username");
By passwordLocator = By.id("passwd");
By loginButtonLocator = By.id("login");
public HomePage loginAs(String username, String password) {
driver.findElement(usernameLocator).sendKeys(username);
driver.findElement(passwordLocator).sendKeys(password);
driver.findElement(loginButtonLocator).submit();
return new HomePage(driver);
}
}
我有我的主页。
public class HomePage {
private final WebDriver driver;
By usernameLocator = By.xpath("//span[contains(text(),'Welcome <LoggedInUserName>')]");
public HomePage(WebDriver driver) {
this.driver = driver;
}
public HomePage checkLoggedInUser(String username) {
// I want to parameterize the usernameLocator with the logged in username
driver.findElement(usernameLocator);
return this;
}
}
在主页中,我想查看 span 标记,其中包含文字&#34; Welcome User1&#34;。用户名可以根据登录用户进行更改。我想使用登录的用户名参数化主页中的 usernameLocator 。
何我可以参数化By locator并在运行时传递参数值?
答案 0 :(得分:1)
你可以使用方法传递消息作为参数来执行此操作,返回按对象,如下所示:
public By usernameLocator(String message) {
return By.xpath(String.format("//span[contains(text(),'%s')]", message));
}
在页面文件中需要调用上述方法。
谢谢, 萨迪克