Assert Method - TestNG Tutorial 6

Опубликовано: 21 Октябрь 2018
на канале: Automation Zone
1,382
21

This tutorial will explain how use the Assert Method in TestNG

Sample Code :

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Assert;
import org.testng.annotations.Test;

public class Tutorial6 {

@Test()
public void TC_1() {
System.setProperty("webdriver.chrome.driver", "D:\\YouTube\\TestNG\\Libs\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.google.com");
String title = driver.getTitle();
System.out.println(title);
Assert.assertEquals(title, "Google" , "Asserting the Title");
boolean bol_searchbox = driver.findElement(By.name("q")).isDisplayed();
Assert.assertTrue(bol_searchbox , "Checking if the seachbox is displayed");
driver.close();
}
}


Смотрите видео Assert Method - TestNG Tutorial 6 онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Automation Zone 21 Октябрь 2018, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 1,382 раз и оно понравилось 21 людям.