In this article i will share sample code to login API publisher and view stats dashboard. You can use similar tests to test API Manager stats dash board related functionalities.
Add following source to integration tests and full class name to testings.xml file
Add following source to integration tests and full class name to testings.xml file
import org.testng.Assert;
import org.testng.annotations.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
public class DOJOUIElementTestCase {
@Test(groups = {"wso2.am"}, description = "APIM stats DOJO element test case")
public void LoginWithEmailUserNameTestCase() throws Exception {
WebDriver driver = new FirefoxDriver();
driver.get("https://localhost:9443/publisher/");
driver.findElement(By.id("username")).sendKeys("provider1");
driver.findElement(By.id("pass")).sendKeys("provider1");
driver.findElement(By.id("loginButton")).click();
WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.elementToBeClickable(By.linkText("Statistics")));
driver.findElement(By.linkText("Statistics")).click();
driver.findElement(By.linkText("API Response Times")).click(); wait.until(ExpectedConditions.elementToBeClickable(By.id("serviceTimeChart")));
driver.findElements(By.id("serviceTimeChart")).get(0).click(); wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//div[contains(@class,'dijitTooltipRight')]")));
WebElement toolTip = driver.findElement(By.xpath("//div[contains(@class,'dijitTooltipRight')]"));
Assert.assertEquals(toolTip.getText().contains("ms"), true);
driver.quit();
}
}
No comments:
Post a Comment