<legend id='CbQYw'><style id='CbQYw'><dir id='CbQYw'><q id='CbQYw'></q></dir></style></legend>

        <tfoot id='CbQYw'></tfoot>
        <i id='CbQYw'><tr id='CbQYw'><dt id='CbQYw'><q id='CbQYw'><span id='CbQYw'><b id='CbQYw'><form id='CbQYw'><ins id='CbQYw'></ins><ul id='CbQYw'></ul><sub id='CbQYw'></sub></form><legend id='CbQYw'></legend><bdo id='CbQYw'><pre id='CbQYw'><center id='CbQYw'></center></pre></bdo></b><th id='CbQYw'></th></span></q></dt></tr></i><div id='CbQYw'><tfoot id='CbQYw'></tfoot><dl id='CbQYw'><fieldset id='CbQYw'></fieldset></dl></div>

          <bdo id='CbQYw'></bdo><ul id='CbQYw'></ul>

        <small id='CbQYw'></small><noframes id='CbQYw'>

        可以说,如何在每次量角器 -spec 测试后重新启动或关闭浏览器

        How to, so to speak, restart or close browser after every protractor -spec test(可以说,如何在每次量角器 -spec 测试后重新启动或关闭浏览器)
        <tfoot id='VE2Vj'></tfoot>
          <i id='VE2Vj'><tr id='VE2Vj'><dt id='VE2Vj'><q id='VE2Vj'><span id='VE2Vj'><b id='VE2Vj'><form id='VE2Vj'><ins id='VE2Vj'></ins><ul id='VE2Vj'></ul><sub id='VE2Vj'></sub></form><legend id='VE2Vj'></legend><bdo id='VE2Vj'><pre id='VE2Vj'><center id='VE2Vj'></center></pre></bdo></b><th id='VE2Vj'></th></span></q></dt></tr></i><div id='VE2Vj'><tfoot id='VE2Vj'></tfoot><dl id='VE2Vj'><fieldset id='VE2Vj'></fieldset></dl></div>
                <bdo id='VE2Vj'></bdo><ul id='VE2Vj'></ul>

                  <small id='VE2Vj'></small><noframes id='VE2Vj'>

                    <tbody id='VE2Vj'></tbody>
                1. <legend id='VE2Vj'><style id='VE2Vj'><dir id='VE2Vj'><q id='VE2Vj'></q></dir></style></legend>

                  本文介绍了可以说,如何在每次量角器 -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 测试后重新启动或关闭浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What are valid deviceNames for Chrome emulation testing with Protractor?(使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?)
                  Protractor Check if Element Does Not Exist(量角器检查元素是否不存在)
                  Protractor e2e Tests Login Redirection(Protractor e2e 测试登录重定向)
                  Explain about async/ await in Protractor(解释 Protractor 中的 async/await)
                  Protractor browser.wait doesn#39;t wait(量角器 browser.wait 不等待)
                  How to use Protractor with Angular 2?(如何在 Angular 2 中使用量角器?)

                    1. <i id='twnkZ'><tr id='twnkZ'><dt id='twnkZ'><q id='twnkZ'><span id='twnkZ'><b id='twnkZ'><form id='twnkZ'><ins id='twnkZ'></ins><ul id='twnkZ'></ul><sub id='twnkZ'></sub></form><legend id='twnkZ'></legend><bdo id='twnkZ'><pre id='twnkZ'><center id='twnkZ'></center></pre></bdo></b><th id='twnkZ'></th></span></q></dt></tr></i><div id='twnkZ'><tfoot id='twnkZ'></tfoot><dl id='twnkZ'><fieldset id='twnkZ'></fieldset></dl></div>

                          <tbody id='twnkZ'></tbody>

                          <small id='twnkZ'></small><noframes id='twnkZ'>

                          <legend id='twnkZ'><style id='twnkZ'><dir id='twnkZ'><q id='twnkZ'></q></dir></style></legend><tfoot id='twnkZ'></tfoot>
                          • <bdo id='twnkZ'></bdo><ul id='twnkZ'></ul>