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

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

      <tfoot id='yE1RC'></tfoot>

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

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

          <bdo id='yE1RC'></bdo><ul id='yE1RC'></ul>
      1. 將 Firefox 35 與量角器一起使用會導致錯誤

        Using Firefox 35 with protractor results into an error(將 Firefox 35 與量角器一起使用會導致錯誤)
            <tbody id='YJaYh'></tbody>
          1. <tfoot id='YJaYh'></tfoot>
            • <bdo id='YJaYh'></bdo><ul id='YJaYh'></ul>
              <legend id='YJaYh'><style id='YJaYh'><dir id='YJaYh'><q id='YJaYh'></q></dir></style></legend>
                <i id='YJaYh'><tr id='YJaYh'><dt id='YJaYh'><q id='YJaYh'><span id='YJaYh'><b id='YJaYh'><form id='YJaYh'><ins id='YJaYh'></ins><ul id='YJaYh'></ul><sub id='YJaYh'></sub></form><legend id='YJaYh'></legend><bdo id='YJaYh'><pre id='YJaYh'><center id='YJaYh'></center></pre></bdo></b><th id='YJaYh'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='YJaYh'><tfoot id='YJaYh'></tfoot><dl id='YJaYh'><fieldset id='YJaYh'></fieldset></dl></div>

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

                1. 本文介紹了將 Firefox 35 與量角器一起使用會導致錯誤的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  使用 chrome 運行我的 Angular 應用場景,場景運行成功,但在 firefox 新版本 35.0b6 上發(fā)生了停止.任何人請幫助我提前謝謝.

                  Run my Angular app scenarios with chrome the scenarios are run successfully, but the halt is occurred at firefox new version 35.0b6. Any one please help me thanks in advance.

                  我正在使用量角器 1.4.0.我的場景:

                  I'm using protractor 1.4.0. My scenario:

                  describe('99ccs e2e testing', function() {
                      it('check it have a title 99CCS', function() {
                          browser.get('http://99ccs.com/ccsnew/#/login');
                  
                          //it checks the "http://99ccs.com/ccsnew/" page contains a title "99CCS"
                          expect(browser.getTitle()).toEqual('99CCS');
                  
                          //it checks when user enter the URL as "http://99ccs.com/ccsnew/" it navigates to "http://99ccs.com/ccsnew/#/login"
                          browser.get('http://99ccs.com/ccsnew/');
                          expect(browser.getLocationAbsUrl()).toBe('http://99ccs.com/ccsnew/#/login');
                  
                          //it checks when user enter the URL as "http://99ccs.com/ccsnew/" it navigates to Login page or not
                          browser.getLocationAbsUrl().then(function(url) {
                              expect(url.split('#')[1]).toBe('/login');
                          });
                          expect(browser.get('http://99ccs.com/ccsnew/')).toEqual(browser.get('http://99ccs.com/ccsnew/#/login'));
                  
                          //it checks if we give any location url from 99ccs.com/ccsnew without login it navigates to Login page or not
                           expect(browser.get('http://99ccs.com/ccsnew/#/ts/edit/131')).toEqual(browser.get('http://99ccs.com/ccsnew/#/login'));
                      });
                  });
                  

                  推薦答案

                  Selenium 2.44 與 Firefox 35 不兼容.相關問題:

                  • 注意:Protractor 不適用于 Firefox 35
                  • FirefoxDriver 無法使用 FireFox 35 執(zhí)行異步腳本
                  • Firefox 35:將參數(shù)傳遞給 executeScript 不起作用.

                  目前最簡單的選擇是將 firefox 降級到最新的穩(wěn)定版本(當前為 34.0.5).

                  The easiest option right now would be to downgrade firefox to the latest stable version (currently 34.0.5).

                  更新: selenium 2.45 已于今天(2015 年 2 月 28 日)發(fā)布,修復了 firefox 兼容性問題.目前,要讓 protractorselenium 2.45 一起工作 - 直接從 protractor github master 分支安裝它:

                  UPDATE: selenium 2.45 with firefox compatibility issues fixed was released today (Feb 28 2015). At the moment, to have protractor work with selenium 2.45 - install it from the protractor github master branch directly:

                  $ npm install angular/protractor
                  

                  $ npm install git+https://git@github.com/angular/protractor.git
                  

                  <小時>

                  僅供參考,我已經(jīng)重現(xiàn)了 protractor 1.5 和angularjs.org"protractor 的相同連接問題教程 測試用例:

                  describe('angularjs homepage todo list', function() {
                      it('should add a todo', function() {
                          browser.get('http://www.angularjs.org');
                  
                          element(by.model('todoText')).sendKeys('write a protractor test');
                          element(by.css('[value="add"]')).click();
                  
                          var todoList = element.all(by.repeater('todo in todos'));
                          expect(todoList.count()).toEqual(3);
                          expect(todoList.get(2).getText()).toEqual('write a protractor test');
                      });
                  });
                  

                  這篇關于將 Firefox 35 與量角器一起使用會導致錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調(diào)用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調(diào)用完成)
                  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屋-程序員軟件開發(fā)技術(shù)分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內(nèi)容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                  • <tfoot id='NNuUc'></tfoot>
                      <tbody id='NNuUc'></tbody>

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

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

                      • <small id='NNuUc'></small><noframes id='NNuUc'>

                          <bdo id='NNuUc'></bdo><ul id='NNuUc'></ul>
                          1. 主站蜘蛛池模板: 日韩免费av一区二区 | 日韩中文字幕 | 免费观看一级视频 | av av在线| 欧美成人a∨高清免费观看 色999日韩 | av在线播放网 | 欧美日韩综合视频 | 亚洲三区在线 | 久久av一区 | 成人免费观看男女羞羞视频 | 国产一卡二卡三卡 | 成人伊人| 日韩欧美不卡 | 成人在线观看免费视频 | 欧美在线综合 | 国产精品资源在线观看 | 天天影视亚洲综合网 | 人人爽人人爽人人片av | 中文字幕一区二区三区精彩视频 | 一级黄在线观看 | 国产精品www | 国产区精品在线观看 | 99riav国产一区二区三区 | 久久久久国产一区二区三区四区 | 国产乱码精品一区二三赶尸艳谈 | 欧美成人二区 | 色一阁| 国产欧美日韩一区 | 99久久婷婷 | 国产精品久久亚洲7777 | 日韩福利视频 | 亚洲视频中文字幕 | 色性av| 免费成人高清在线视频 | 国产精品99久久久久久www | 拍拍无遮挡人做人爱视频免费观看 | 精品一区二区三区在线视频 | 欧美一区二区在线 | 91精品国产综合久久久久久丝袜 | 久久日韩精品一区二区三区 | 在线观看中文字幕dvd播放 |