我无法使用TestNG启动Web浏览器

时间:2016-09-20 07:44:09

标签: selenium testng

下面是代码:我无法使用代码启动浏览器。请提出解决方案

import org.openqa.selenium.Test;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
import org.testng.Assert;
import org.testng.annotations.*;

public class NewTest {
public WebDriver driver;`enter code here`
  @Test
  public void VerifyHomepageTitle() {
  WebDriver driver = new FirefoxDriver();
  driver.navigate().to("http://google.com");
  driver.quit();
            }
      }

1 个答案:

答案 0 :(得分:0)

您在使用' driver.quit()'打开后立即关闭网页。评论此代码并尝试您将看到差异。