测试行业的小测试
public void addContact(){
System.out.println(driver);
WebElement el = driver.findElement(By.id("addContactButton"));
el.click();
为什么这段代码一直报空指针啊 driver 为 NULL http://127.0.0.1:4723/wd/hub 在浏览器无法访问
相同代码 public void addContact(){
System.out.println(driver);
WebElement el = driver.findElement(By.id("addContactButton"));
el.click();
List textFieldsList = driver.findElements(By.tagName("textfield"));
textFieldsList.get(0).sendKeys("Some Name");
textFieldsList.get(2).sendKeys("Some@example.com");
driver.findElement(By.name("Save")).click();
加了句 System.out.println(driver); 打印出来 driver 为 NULL 报空指针 为什么 driver 数 NULL 啊
本地访问http://127.0.0.1:4723/wd/hub 也访问不了
测试行业的小测试