可以说,如何在每次量角器 -spec 测试后重新启动或关闭浏览器 [英] How to, so to speak, restart or close browser after every protractor -spec test

查看:19
本文介绍了可以说,如何在每次量角器 -spec 测试后重新启动或关闭浏览器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为 Web 应用程序实施量角器测试.我已经做了一些谷歌搜索,但我想出了 zip,我希望我创建的每个规范在浏览器运行该特定规范文件中的所有测试后关闭浏览器,然后继续到下一个 -spec 文件,等等.我有诸如使用beforeAll"和afterAll"之类的东西,但 Jasmine 无法识别这些方法.朝着正确的方向前进会很棒!

I am implementing Protractor test for a web app. I have done some google searching but I have come up with zip, I want to every spec that I create to close the browser after it has ran all of the test in that specific spec file and then continue on to the next -spec file, etc. I've things such as using "beforeAll" and "afterAll" but Jasmine doesn't recognize these methods. A point in the right direction would be awesome!

describe('我稍后会在这里放一些更有意义的东西:)', function () {

describe('i will put something more meaningful here later :)', function () {

//not sure if this method actually exist in Jasmine
afterAll(function () {
   //restart browser or something of the nature
});

it('should do stuff', function () {

});

it('do stuff', function () {

});

});

浏览器应该关闭,然后重新打开以运行下一个规范.

browser should then close, and then open back up to run the next spec.

推荐答案

说到测试之间重启浏览器,有一个相关的配置选项:

Speaking about restarting browser between tests, there is a relevant configuration option:

// If true, protractor will restart the browser between each test.
// CAUTION: This will cause your tests to slow down drastically.
restartBrowserBetweenTests: false,

将其设置为 true.

仅供参考,这是初始功能请求:

FYI, Here is the initial feature request:

beforeAllafterAll 内置在 jasmine-2.x 中.要使它们工作,您需要将 jasmine2 设置为测试框架量角器配置中:

beforeAll and afterAll are built into jasmine-2.x. To make them work, you need to set jasmine2 as a testing framework in the protractor config:

exports.config = {
    ...
    framework: 'jasmine2',
    ...
}

<小时>

对于jasmine-1.x,有第三方jasmine-beforeAll 提供相同功能的包.


For jasmine-1.x, there is a third-party jasmine-beforeAll package that provides the same exact functionality.

这篇关于可以说,如何在每次量角器 -spec 测试后重新启动或关闭浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆