186
9
章
PageObject
パターン
the-list
WordPress
Post1Post2Post3 3
PageObject
PageObject
editAPost()
AllPostsPage
PageObject
public class AllPostsPage {
WebDriver driver;
@FindBy(how=How.ID, using="the-list")
WebElement postsContainer;
public void editAPost(String presentTitle,
String newTitle, String description){
List<WebElement> allPosts
= postsContainer.findElements(By.className("row- title"));
for(WebElement ele : allPosts){ ...