首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

5、FirefoxDriver和InternetExplorerDriver

2012-10-26 
五、FirefoxDriver和InternetExplorerDriverFirefoxDriverFirefoxDriver能够直接打开firefox浏览器运行代码

五、FirefoxDriver和InternetExplorerDriver
FirefoxDriver
FirefoxDriver能够直接打开firefox浏览器运行代码支持Javascript,执行速度比HtmlUnitDriver慢,比InternetExplorerDriver快。

package selenium.test.googleSearch;import org.openqa.selenium.WebDriver;import org.openqa.selenium.ie.InternetExplorerDriver;public class BaiduInternetExplorerDriver {/** * @param args */public static void main(String[] args) {// TODO Auto-generated method stubWebDriver driver = new InternetExplorerDriver();driver.get("http://www.baidu.com/");}}









热点排行