當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript browser.getLocationAbsUrl方法代碼示例

本文整理匯總了TypeScript中protractor.browser.getLocationAbsUrl方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript browser.getLocationAbsUrl方法的具體用法?TypeScript browser.getLocationAbsUrl怎麽用?TypeScript browser.getLocationAbsUrl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在protractor.browser的用法示例。


在下文中一共展示了browser.getLocationAbsUrl方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

    it('should render phone specific links', function() {
      let query = element(by.model('$ctrl.query'));
      query.sendKeys('nexus');

      element.all(by.css('.phones li a')).first().click();
      expect(browser.getLocationAbsUrl()).toBe('/phones/nexus-s');
    });
開發者ID:AnthonyPAlicea,項目名稱:angular,代碼行數:7,代碼來源:e2e-spec.ts

示例2: it

    it('should render phone specific links', function() {
      let query = element(by.css('input'));
      query.sendKeys('nexus');

      element.all(by.css('.phones li a')).first().click();
      browser.sleep(200); // Not sure why this is needed but it is. The route change works fine.
      expect(browser.getLocationAbsUrl()).toBe('/phones/nexus-s');
    });
開發者ID:jvandemo,項目名稱:angular.io,代碼行數:8,代碼來源:e2e-spec.ts

示例3: it

  it('should redirect index.html to index.html#/phones', function() {
	  //這裏的browser對象是由Protractor提供的,大家可以把下麵一行注釋放開,看看這個對象的內容
	  //console.log(browser);
	  //首先利用browser.get()這個接口讓瀏覽器打開app.index.html這個頁麵
	  browser.get('app/index.html');
	  //然後用browser.getLocationAbsUrl()獲取到地址欄的URL,看看是不是轉向了/phones這個路徑
	  browser.getLocationAbsUrl().then(function(url) {
	      expect(url.split('#')[1]).toBe('/phones');
	  });
  });
開發者ID:angenalZZZ,項目名稱:NiceFish,代碼行數:10,代碼來源:app.e2e-spec.ts

示例4: it

    it('should render phone specific links', function() {
      let phoneList = element.all(by.repeater('phone in $ctrl.phones'));
      let query = element(by.model('$ctrl.query'));

      query.sendKeys('nexus');
      waitForCount(phoneList, 1);

      let nexusPhone = phoneList.first();
      let detailLink = nexusPhone.all(by.css('a')).first()

      detailLink.click();
      expect(browser.getLocationAbsUrl()).toBe('/phones/nexus-s');
    });
開發者ID:BobChao87,項目名稱:angular,代碼行數:13,代碼來源:e2e-spec.ts

示例5:

browser.get(0);
browser.get(true);
browser.get(() => {});
browser.refresh('1');
browser.refresh(true);
browser.refresh(() => {});
browser.refresh(100, 100);
browser.navigate(0);
browser.navigate('1');
browser.navigate(true);
browser.navigate(() => {});
browser.setLocation(0);
browser.setLocation(true);
browser.setLocation(() => {});
browser.setLocation('url', 'url');
browser.getLocationAbsUrl(0);
browser.getLocationAbsUrl('1');
browser.getLocationAbsUrl(true);
browser.getLocationAbsUrl(() => {});
browser.debugger(0);
browser.debugger('1');
browser.debugger(true);
browser.debugger(() => {});
browser.enterRepl(0, 0);
browser.enterRepl('1');
browser.enterRepl(true);
browser.enterRepl(() => {});
browser.pause(0, 0);
browser.pause('1');
browser.pause(true);
browser.pause(() => {});
開發者ID:HelloMQL,項目名稱:protractor,代碼行數:31,代碼來源:test_fail_browser.ts

示例6:

browser.findElement('');
browser.findElements('');
browser.isElementPresent('');
browser.addMockModule('', '');
browser.addMockModule('', '', ['','']);
browser.addMockModule('', () => {});
browser.addMockModule('', () => {}, ['','']);
browser.clearMockModules();
browser.removeMockModule('');
browser.getRegisteredMockModules();
browser.get('url');
browser.refresh();
browser.refresh(100);
browser.navigate();
browser.setLocation('url');
browser.getLocationAbsUrl();
browser.debugger();
browser.enterRepl();
browser.enterRepl(100);
browser.pause();
browser.pause(100);
browser.actions();
browser.wait('condition');
browser.wait('condition', 100);
browser.wait('condition', 100, 'message');
browser.getCurrentUrl();
browser.getTitle();
browser.takeScreenshot();
by.addLocator('name', () => {});
by.addLocator('name', 'script');
by.binding('bindingDescriptor');
開發者ID:HelloMQL,項目名稱:protractor,代碼行數:31,代碼來源:test_pass.ts


注:本文中的protractor.browser.getLocationAbsUrl方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。