forked from lerndevops/labs
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathTestNG-Example.java
More file actions
executable file
·44 lines (34 loc) · 1.08 KB
/
TestNG-Example.java
File metadata and controls
executable file
·44 lines (34 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.edu.testng;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class NewTest {
WebDriver driver = new ChromeDriver();
@Test
public void MyFirstTestNGTestCase() throws InterruptedException {
String title = driver.getTitle();
System.out.print("Current page title is : " + title);
WebElement user = driver.findElement(By.name("userName"));
user.sendKeys("test");
WebElement pwd = driver.findElement(By.name("password"));
pwd.sendKeys("test");
WebElement signin = driver.findElement(By.name("login"));
signin.click();
Thread.sleep(1000);
System.out.print("\n'SUCCESSFUL EXECUTION!!!");
}
@BeforeMethod
public void startChrome() {
driver.manage().window().maximize();
driver.get("http://newtours.demoaut.com/");
}
@AfterMethod
public void cleaupProc() {
System.out.print("\nBrowser close");
driver.quit();
}
}