-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTest0.java
More file actions
33 lines (22 loc) · 811 Bytes
/
Test0.java
File metadata and controls
33 lines (22 loc) · 811 Bytes
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
package dataDriven;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.Test;
import io.github.bonigarcia.wdm.WebDriverManager;
public class Test0 {
@Test
public void tc1() throws FileNotFoundException, IOException{
Properties p=new Properties();
p.load(new FileInputStream("./data.properties"));
WebDriverManager.chromedriver().setup();
WebDriver driver=new ChromeDriver();
driver.get(p.getProperty("url"));
driver.findElement(By.id("email")).sendKeys(p.getProperty("username"));
driver.findElement(By.id("password")).sendKeys(p.getProperty("password"));
}
}