您的位置:软件测试 > 开源软件测试 > 开源功能测试工具 > Selenium
搭建mocha测试环境并使用selenium进行测试
作者:网络转载 发布时间:[ 2014/3/25 9:44:15 ] 推荐标签:selenium 测试环境

  三、测试实例
  以下是用BDD写的一个测试示例test.js,该测试的目的是打开google主页,搜索mocha,并检查搜索结果网页的title是否含有mocha关键字。
1 var should = require('chai').should();
2 var webdriver = require('selenium-webdriver');
3 var By = webdriver.By;
4
5 var builder = new webdriver.Builder().usingServer("http://127.0.0.1:4444/wd/hub");
6 builder.withCapabilities({ browserName : "firefox" });
7 var driver = builder.build();
8
9 describe ('first test', function () {
10     beforeEach(function () {
11         driver.get('http://www.google.com');
12     });
13
14     afterEach(function () {
15         driver.close();
16         driver.quit();
17     });
18
19     it('should have correct title', function (done) {
20         driver.findElement(By.css('#lst-ib')).sendKeys('mocha');
21         driver.findElement(By.css('[name="btnK"]')).click();
22         driver.sleep(3000);
23         driver.getTitle().then(function (title) {
24             title.should.contain('mocha');
25             done();
26         });
27     });
28 });
  在命令行中切换到测试目录,如本例中新建的mocha-test目录,输入以下命令以启动测试:
  mocha -t 30000 -R spec test.js
  该命令中的"-t 30000"是设置一个测试用例(一个it函数表示一个测试用例)运行的时间不超过30秒,"-R spec"是设置测试结果的输出格式。关于mocha运行测试的更多参数不再赘述。

上一页12下一页
软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd