标签:
虽然selenium1.0已经成为过去时,现在都用selenium2.0,但是如果想要在代码中调用selenium1.0的api怎么办,看下面
WebDriver driver = new ChromeDriver(); String baseUrl ="http://www.google.com"; String url = "http://www.baidu.com"; Selenium selenium = new WebDriverBackedSelenium(driver, baseUrl); selenium.open(url);
将会打开百度,其它的方法可参考api
标签:
原文地址:http://www.cnblogs.com/qiaoyeye/p/5067494.html