Selenium实例:AJAX自动化测试应用
Selenium是目前非常流行的免费自动化测试框架,适用于各种WEB应用程序的自动化测试,并且支持IE、Firefox、Safari、 Chrome、Opera等多种浏览器类型。今天Sincky以实例来演示对于AJAX页面的自动化测试处理方法。
Selenium官网:http://seleniumhq.org/
Selenium中文论坛:http://seleniumcn.cn/
这里Sincky以http://tsingtao.qq.com/user/list?order=1&page=1页面的投票功能为例,演示如何通过Java TestNG方式的Selenium脚本处理AJAX。
脚本如下:
package com.testscripts; import com.thoughtworks.selenium.*; /** @Test selenium.click("link=登录"); } |