久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      <i id='5HIt1'><tr id='5HIt1'><dt id='5HIt1'><q id='5HIt1'><span id='5HIt1'><b id='5HIt1'><form id='5HIt1'><ins id='5HIt1'></ins><ul id='5HIt1'></ul><sub id='5HIt1'></sub></form><legend id='5HIt1'></legend><bdo id='5HIt1'><pre id='5HIt1'><center id='5HIt1'></center></pre></bdo></b><th id='5HIt1'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5HIt1'><tfoot id='5HIt1'></tfoot><dl id='5HIt1'><fieldset id='5HIt1'></fieldset></dl></div>
      <tfoot id='5HIt1'></tfoot>
        <bdo id='5HIt1'></bdo><ul id='5HIt1'></ul>
    1. <small id='5HIt1'></small><noframes id='5HIt1'>

      <legend id='5HIt1'><style id='5HIt1'><dir id='5HIt1'><q id='5HIt1'></q></dir></style></legend>

        量角器運行后出現 uncaughtException

        uncaughtException after a Protractor run(量角器運行后出現 uncaughtException)
          <bdo id='DwOZx'></bdo><ul id='DwOZx'></ul>
          <i id='DwOZx'><tr id='DwOZx'><dt id='DwOZx'><q id='DwOZx'><span id='DwOZx'><b id='DwOZx'><form id='DwOZx'><ins id='DwOZx'></ins><ul id='DwOZx'></ul><sub id='DwOZx'></sub></form><legend id='DwOZx'></legend><bdo id='DwOZx'><pre id='DwOZx'><center id='DwOZx'></center></pre></bdo></b><th id='DwOZx'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='DwOZx'><tfoot id='DwOZx'></tfoot><dl id='DwOZx'><fieldset id='DwOZx'></fieldset></dl></div>

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

              <tfoot id='DwOZx'></tfoot>
                <tbody id='DwOZx'></tbody>

            2. <small id='DwOZx'></small><noframes id='DwOZx'>

                • 本文介紹了量角器運行后出現 uncaughtException的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在升級到 Protractor 4.0.0 并因重大更改調整配置后,我們終于啟動了測試.

                  After upgrading to Protractor 4.0.0 and adjusting the config because of the breaking changes, we finally have our tests launching.

                  現在,問題是在測試運行后它失敗了:

                  Now, the problem is that after a test run it fails with:

                  [09:52:22] E/launcher - "process.on('uncaughtException'" error, see launcher
                  [09:52:22] E/launcher - Process exited with error code 199
                  

                  如何調試此問題并了解其原因?

                  How to debug this problem and understand what is causing it?

                  嘗試在疑難解答"模式下運行 Protractor:

                  Tried to run Protractor in "troubleshoot" mode:

                  $ protractor config/local.conf.js --troubleshoot
                  

                  但得到完全相同的輸出,但沒有關于錯誤的詳細信息.

                  but got exactly the same output with no details about the error.

                  推薦答案

                  這是目前正在修復應該是一個熱修復很快.快速修復(在熱修復發布之前)是更改 node_modules 中的代碼或恢復到 3.3.0.

                  This is currently being fixed and there should be a hot fix out soon. The quick fix (before the hot fix is released) is to change the code in your node_modules or revert to 3.3.0.

                  編輯 node_modules/protractor/built/launcher.js 將第 168 行的 uncaughtException 替換為:

                  Edit node_modules/protractor/built/launcher.js replace the uncaughtException at line 168 with:

                      process.on('uncaughtException', function (e) {
                      var errorCode = exitCodes_1.ErrorHandler.parseError(e);
                      if (errorCode) {
                          var protractorError = e;
                          exitCodes_1.ProtractorError.log(logger, errorCode, protractorError.message, protractorError.stack);
                          process.exit(errorCode);
                      }
                      else {
                          logger.error(e.message);
                          logger.error(e.stack);
                          process.exit(exitCodes_1.ProtractorError.CODE);
                      }
                  });
                  

                  這篇關于量角器運行后出現 uncaughtException的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標頭) - IT屋-程序員軟件開發技術分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                    <legend id='SHTn1'><style id='SHTn1'><dir id='SHTn1'><q id='SHTn1'></q></dir></style></legend>

                      • <bdo id='SHTn1'></bdo><ul id='SHTn1'></ul>

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

                          • <i id='SHTn1'><tr id='SHTn1'><dt id='SHTn1'><q id='SHTn1'><span id='SHTn1'><b id='SHTn1'><form id='SHTn1'><ins id='SHTn1'></ins><ul id='SHTn1'></ul><sub id='SHTn1'></sub></form><legend id='SHTn1'></legend><bdo id='SHTn1'><pre id='SHTn1'><center id='SHTn1'></center></pre></bdo></b><th id='SHTn1'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='SHTn1'><tfoot id='SHTn1'></tfoot><dl id='SHTn1'><fieldset id='SHTn1'></fieldset></dl></div>
                            <tfoot id='SHTn1'></tfoot>
                              <tbody id='SHTn1'></tbody>
                            主站蜘蛛池模板: 亚洲精品视频在线看 | 国产一区二区三区在线 | 久久久一区二区三区四区 | 久亚州在线播放 | 欧美日韩高清在线一区 | 久久久噜噜噜久久中文字幕色伊伊 | 日本久久网 | 99精品欧美一区二区三区 | 国产区在线视频 | 欧美日韩中文字幕在线 | 欧美精品国产精品 | 一本一道久久a久久精品蜜桃 | 亚洲精品一 | 欧美日韩1区2区 | 日韩一区二区不卡 | 国产小视频在线观看 | 一区二区三区在线免费观看 | 国产精品色 | 国产精品福利在线 | 97色在线观看免费视频 | 日韩欧美视频在线 | 久久久久国产一区二区三区 | 日本不卡高清视频 | 久久久精品一区二区 | 天天干天天色 | 欧美一区二区在线播放 | 毛片高清| a爱视频| 成人在线a| 精品久久99 | www国产精品 | 久久99国产精品久久99果冻传媒 | 91精品国产91久久综合桃花 | 成人国产a | 国产乱码精品一区二区三区中文 | 久久成| 国产一二三视频在线观看 | 国产精品毛片久久久久久 | 欧美成视频 | 日韩一二区在线 | 国产偷自视频区视频 |