selenium

selenium环境搭建

selenium几个工具的联系

选择需要考虑的问题

浏览器支持

是否需要远程安装

多语言支持

Selenium语言
Command,Target,Value三种元素组成一个行为,并且有辅助录制脚本的工具(如Selenium IDE),但是他没有条件,循环,这会使复杂的测试编的困难甚至不可能。

结论
建议使用Selenium IDE + FireBug进行测试案例的编写,然后转为其他语言的测试案例后,再调用Selenium RC运行测试案例。

webDriver常用语法

WebDriver driver = new FirefoxDriver();

参考

[1]https://selenium.googlecode.com/git/docs/api/java/index.html

[2]https://code.google.com/p/selenium/wiki/GettingStarted

[3]https://www.ibm.com/developerworks/cn/web/1306_chenlei_webdriver/

[4]http://stackoverflow.com/questions/6430462/how-to-select-get-drop-down-option-in-selenium-2

[5]http://www.ibm.com/developerworks/cn/java/j-lo-keyboard/