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


TypeScript browser.driver.get方法代碼示例

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


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

示例1: it

  it('should transfer component state', function() {
    // Load the page without waiting for Angular since it is not bootstrapped automatically.
    browser.driver.get(browser.baseUrl + 'transferstate');

    // Test the contents from the server.
    const serverDiv = browser.driver.findElement(by.css('div'));
    expect(serverDiv.getText()).toEqual('5');

    // Bootstrap the client side app and retest the contents
    browser.executeScript('doBootstrap()');
    expect(element(by.css('div')).getText()).toEqual('50');

    // Make sure there were no client side errors.
    verifyNoBrowserErrors();
  });
開發者ID:BobChao87,項目名稱:angular,代碼行數:15,代碼來源:transferstate-spec.ts

示例2: it

  it('should measure performance', function() {
    browser.sleep(3000);  // wait for extension to load

    browser.driver.get(TEST_URL);

    browser.executeScript('window.startProfiler()').then(function() {
      console.log('started measuring perf');
    });

    browser.executeAsyncScript('setTimeout(arguments[0], 1000);');
    browser.executeScript('window.forceGC()');

    browser.executeAsyncScript('var cb = arguments[0]; window.getProfile(cb);')
        .then(function(profile: any) {
          assertEventsContainsName(profile, 'gc');
          assertEventsContainsName(profile, 'script');
        });
  });
開發者ID:AlmogShaul,項目名稱:angular,代碼行數:18,代碼來源:spec.ts

示例3: it

  it('should display: Hello world!', function() {
    // Load the page without waiting for Angular since it is not bootstrapped automatically.
    browser.driver.get(browser.baseUrl + 'helloworld');

    const style = browser.driver.findElement(by.css('style[ng-transition="hlw"]'));
    expect(style.getText()).not.toBeNull();

    // Test the contents from the server.
    const serverDiv = browser.driver.findElement(by.css('div'));
    expect(serverDiv.getText()).toEqual('Hello world!');

    // Bootstrap the client side app.
    browser.executeScript('doBootstrap()');

    // Retest the contents after the client bootstraps.
    expect(element(by.css('div')).getText()).toEqual('Hello world!');

    // Make sure the server styles got replaced by client side ones.
    expect(element(by.css('style[ng-transition="hlw"]')).isPresent()).toBe(false);
    expect(element(by.css('style')).getText()).toBe('');

    // Make sure there were no client side errors.
    verifyNoBrowserErrors();
  });
開發者ID:BobChao87,項目名稱:angular,代碼行數:24,代碼來源:helloworld-spec.ts

示例4: goTo

export function goTo(profile: string) {
    browser.waitForAngular();
    return browser.driver.get(`http://localhost:49152/${profile}`);
}
開發者ID:vfcosta,項目名稱:angular-theme,代碼行數:4,代碼來源:utils.ts

示例5: beforeEach

 beforeEach(() => {
   browser.driver.get('http://localhost:8080');
 });
開發者ID:marley-js,項目名稱:Mastering-TypeScript-Programming-Techniques,代碼行數:3,代碼來源:spec.ts

示例6: Given

 Given('I go to {stringInDoubleQuotes}', (page) => {
     browser.waitForAngular();
     return browser.driver.get(`http://localhost:49152${page}`);
 });
開發者ID:vfcosta,項目名稱:angular-theme,代碼行數:4,代碼來源:steps.ts


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