The EditPostPage PageObject

The EditPostPage PageObject deals with editing an existing post, using the following code:

package com.example;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;

public class EditPostPage {

WebDriver driver;

@FindBy(id = "content_ifr")
WebElement newPostContentFrame;

@FindBy(id = "tinymce")
WebElement newPostContentBody;

@FindBy(id = "title")
WebElement newPostTitle;

@FindBy(id = "publish")
WebElement newPostPublish;

public EditPostPage(WebDriver driver) {
this.driver = driver;
System.out.println(driver.getCurrentUrl());
}

public void editPost(String title, String descContent) {
newPostTitle.click();
newPostTitle.clear();
newPostTitle.sendKeys(title);
driver.switchTo().frame(newPostContentFrame);
newPostContentBody.clear();
newPostContentBody.sendKeys(descContent);
driver.switchTo().defaultContent();
newPostPublish.click();
}
}

The EditPostPage PageObject is similar to the AddNewPostPage PageObject and is instantiated at the editAPost service of the AllPostsPage PageObject. This provides a service named editPost to edit an existing post. The new title and description are passed as input parameters to this service.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.222.117.109