我的代码在ecllipse中成功运行我的testNG代码已成功执行。为什么我要得到这些信息,请解决这个问题

时间:2018-12-05 07:32:52

标签: selenium testng

public class DataPrderdel {

    WebDriver driver;
    @Test(dataProvider="TestData")
    public void getdata(String fn,String ln){
         System.setProperty("webdriver.chrome.driver", "F:/Selenium drivers/chrome/chromedriver.exe");  
            driver=new ChromeDriver();  
            driver.manage().window().maximize();
            driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS); 
            driver.get("https://testautomationpractice.blogspot.com/");
            driver.switchTo().frame(0);
            WebElement Fname= driver.findElement(By.xpath("//input[@id='RESULT_TextField-1']"));
            Fname.sendKeys(fn);
            WebElement Lname= driver.findElement(By.xpath("//input[@id='RESULT_TextField-2']"));
            Lname.sendKeys(ln);
}
    @DataProvider(name="TestData")
    public String[][] getdata(){
            return new String[][]{{"sai","prasad"},{"man","kinera"},{"loku","dec"}};
    }

}   

在端口40295上启动ChromeDriver 2.44.609538(b655c5a60b0b544917107a59d4153d4bf78e1b90) 仅允许本地连接。 2018年12月5日12:45:08 org.openqa.selenium.remote.ProtocolHandshake createSession INFO:检测到的方言:OSS

在端口35377上启动ChromeDriver 2.44.609538(b655c5a60b0b544917107a59d4153d4bf78e1b90) 仅允许本地连接。 十二月05,2018 12:45:22下午org.openqa.selenium.remote.ProtocolHandshake createSession INFO:检测到的方言:OSS

在端口14153上启动ChromeDriver 2.44.609538(b655c5a60b0b544917107a59d4153d4bf78e1b90) 仅允许本地连接。 2018年12月5日12:45:33 PM org.openqa.selenium.remote.ProtocolHandshake createSession INFO:检测到的方言:OSS

0 个答案:

没有答案