-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathTest1.java
More file actions
35 lines (26 loc) · 1.11 KB
/
Test1.java
File metadata and controls
35 lines (26 loc) · 1.11 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
package dataDriven;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import org.apache.poi.EncryptedDocumentException;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class Test1 {
public static void main(String[] args) throws EncryptedDocumentException, IOException {
FileInputStream fis=new FileInputStream("./data.xlsx");
Workbook wb = WorkbookFactory.create(fis);
String url = wb.getSheet("Sheet1").getRow(1).getCell(0).getStringCellValue();
String us = wb.getSheet("Sheet1").getRow(1).getCell(1).getStringCellValue();
String pwd = wb.getSheet("Sheet1").getRow(1).getCell(2).getStringCellValue();
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.get(url);
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
driver.findElement(By.id("username")).sendKeys(us);
driver.findElement(By.name("pwd")).sendKeys(pwd);
}
}