首页 > 代码库 > Webdriver初探

Webdriver初探

1.启动Firefox浏览器失败
package org.coder.demo; 

import org.openqa.selenium.*; 
import org.openqa.selenium.WebDriver; 
import org.openqa.selenium.firefox.*; 

public class TestWeb { 
           public static void main(String args[]){ 
                        WebDriver driver =new FirefoxDriver(); 
                         driver.get("http://www.baidu.com"); 

 
 
原因:未导入Selenium中libs文件夹中的包

 

Webdriver初探