在selenium- server-standalone-xxx.jar目录下使用命令 java -jar selenium-server-standalone- xxx.jar启动(如果打不开,查看是否端口被占 用:netstat -aon|findstr 4444)。
恭喜~! 你前期工作已经做了,上面的步骤确实有些繁琐,但是并不难,不过我们已经完成成了,下面体验一下成果吧! 拿python网站上的例子:
fromseleniumimportwebdriverfromselenium.common.exceptionsimportNoSuchElementExceptionfromselenium.webdriver
.common.keysimportKeysimporttime
browser= webdriver.Firefox()#Get local session of firefoxbrowser.get("http://www.yahoo.com")#Load pageassert"Yahoo!"inbrowser.title
elem= browser.find_element_by_name("p")#Find the query boxelem.send_keys("seleniumhq"+Keys.RETURN)
time.sleep(0.2)#Let the page load, will be added to the APItry:
browser.find_element_by_xpath("//a[contains(@href,'http://seleniumhq.org')]")exceptNoSuchElementException:assert0,"can't find seleniumhq"browser.close()
(运行过程中如果出现错误:
WebDriverException: Message: u'Unexpected error launching Internet Explorer.
Protected Mode settings are not the same for all zones. Enable Protected Mo
de must be set to the same value (enabled or disabled) for all zones.'
更改IE的internet选项->安全,将Internet/本地Internet/受信任的站定/受限制的站点中的启用保护模式全部去 掉勾,或者全部勾上。)
-----------------------------------------
selenium + python的一份不错文档
http://selenium.googlecode.com/git/docs/api/py/index.html
如果想通过其它浏览器(IE Chrome)运行脚本
安装Chrome driver
chrome driver的下载地址在这里。
1. 下载解压,你会得到一个chromedriver.exe文件(我点开,运行提示 started no prot 9515 ,这是干嘛的?端口9515被占了?中间折腾了半天),后来才知道需要把这家伙放到chrome的安装目录 下...GoogleChromeApplication ,然后设置path环境变量,把chrome的安装目录(我的:C: Program FilesGoogleChromeApplication),然后再调用运行:
复制代码
#coding = utf-8fromseleniumimportwebdriverdriver=webdriver.Chrome()driver.get('http://radar.kuaibo.com')printdriver.title
driver.quit()
又报了个错:
Chrome version must be >= 27.0.1453.0 (Driver info: chromedriver=2.0,platform=Windows NT 5.1 SP3 x86)
说我chrome的版本没有大于27.0.1453.0 ,这个好办,更新到新版本即可。
安装IE driver
在新版本的webdriver中,只有安装了ie driver使用ie进行测试工作。
ie driver的下载地址在这里,记得根据自己机器的操作系统版本来下载相应的driver。
暂时还没尝试,应该和chrome的安装方式类似。
记得配置IE的保护模式
如果要使用webdriver启动IE的话,那么需要配置IE的保护模式了。
把IE里的保护模式都选上或都勾掉可以了。