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


TypeScript protractor.By類代碼示例

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


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

示例1: it

 it('escapes untrusted resource URLs', () => {
   let iframe = element(By.className('e2e-iframe-untrusted-src'));
   expect(iframe.getAttribute('src')).toBe('');
 });
開發者ID:dart-lang,項目名稱:site-webdev,代碼行數:4,代碼來源:e2e-spec.ts

示例2: it

 it('binds trusted resource URLs', () => {
   let iframe = element(By.className('e2e-iframe-trusted-src'));
   expect(iframe.getAttribute('src')).toMatch(/^https:\/\/www.youtube.com\//);
 });
開發者ID:BobChao87,項目名稱:angular,代碼行數:4,代碼來源:app.e2e-spec.ts

示例3: require

import {playersCollection, tribeCollection} from "./database";
import e2eHelp from "./e2e-help";
import {browser, By, element} from "protractor";
import * as monk from "monk";

const config = require("../../config/config");
const hostName = `http://${config.publicHost}:${config.port}`;

const deletedPlayerPage = {
    playerNameTextField: element(By.id('player-name'))
};

describe('The deleted player page ', function () {

    const tribe = {
        _id: monk.id(),
        id: 'delete_me',
        name: 'Change Me'
    };
    const player1 = {_id: monk.id(), tribe: tribe.id, name: "player1", isDeleted: true};
    const players = [player1];

    beforeAll(async function () {
        await tribeCollection.drop();
        await tribeCollection.insert(tribe);
        await e2eHelp.authorizeUserForTribes([tribe.id]);
        await browser.get(`${hostName}/test-login?username=${e2eHelp.userEmail}&password="pw"`);
        await playersCollection.drop();
        await playersCollection.insert(players);
    });
開發者ID:robertfmurdock,項目名稱:Coupling,代碼行數:30,代碼來源:retired-player.e2e.ts

示例4: it

 it('only players that are not in the most recent pairs are displayed', function () {
     const remainingPlayerElements = element.all(By.repeater('player in players'));
     expect(remainingPlayerElements.getText()).toEqual(pluck('name', [player2, player4]));
 });
開發者ID:robertfmurdock,項目名稱:Coupling,代碼行數:4,代碼來源:pair-assignments.e2e.ts

示例5: describe

describe('The current pair assignments', function () {

    const tribe = {
        id: 'delete_me',
        name: 'Funkytown'
    };

    const player1 = {
        _id: monk.id(),
        tribe: tribe.id,
        name: "player1",
        callSignAdjective: 'nimble',
        callSignNoun: 'thimble'
    };
    const player2 = {
        _id: monk.id(),
        tribe: tribe.id,
        name: "player2",
        callSignAdjective: 'nimble',
        callSignNoun: 'thimble'
    };
    const player3 = {
        _id: monk.id(),
        tribe: tribe.id,
        name: "player3",
        callSignAdjective: 'nimble',
        callSignNoun: 'thimble'
    };
    const player4 = {
        _id: monk.id(),
        tribe: tribe.id,
        name: "player4",
        callSignAdjective: 'nimble',
        callSignNoun: 'thimble'
    };
    const player5 = {
        _id: monk.id(),
        tribe: tribe.id,
        name: "player5",
        callSignAdjective: 'nimble',
        callSignNoun: 'thimble'
    };
    const players = [
        player1,
        player2,
        player3,
        player4,
        player5
    ];

    beforeAll(async function () {
        await tribeCollection.insert(tribe);
        await e2eHelp.authorizeUserForTribes([tribe.id]);
        await playersCollection.drop();
        await playersCollection.insert(players);
        await browser.get(`${hostName}/test-login?username=${e2eHelp.userEmail}&password="pw"`);

        await browser.waitForAngular();

        this.apiGuy = await ApiGuy.new(e2eHelp.userEmail)
    });

    afterAll(async function () {
        await tribeCollection.remove({id: tribe.id}, false);
    });

    e2eHelp.afterEachAssertLogsAreEmpty();

    const tribeCardHeaderElement = element(By.className("tribe-card-header"));

    it('shows the tribe', function () {
        browser.setLocation(`/${tribe.id}/pairAssignments/current/`);

        expect(tribeCardHeaderElement.getText()).toEqual(tribe.name);
    });

    it('will let you add players', function () {
        browser.setLocation(`/${tribe.id}/pairAssignments/current/`);
        element(By.id('add-player-button')).click();
        expect(browser.getCurrentUrl()).toEqual(`${hostName}/${tribe.id}/player/new/`);
    });

    it('will let you edit an existing player', function () {
        browser.setLocation(`/${tribe.id}/pairAssignments/current/`);

        element.all(By.repeater('player in players'))
            .first().element(By.className("player-card-header"))
            .click();
        expect(browser.getCurrentUrl()).toEqual(`${hostName}/${tribe.id}/player/${player1._id}/`);
    });

    it('will let you view history', function () {
        browser.setLocation('/' + tribe.id + '/pairAssignments/current/');
        element(By.id('view-history-button')).click();
        expect(browser.getCurrentUrl()).toEqual(`${hostName}/${tribe.id}/history/`);
    });

    it('will let you prepare new pairs', function () {
        browser.setLocation('/' + tribe.id + '/pairAssignments/current/');
        element(By.id('new-pairs-button')).click();
//.........這裏部分代碼省略.........
開發者ID:robertfmurdock,項目名稱:Coupling,代碼行數:101,代碼來源:pair-assignments.e2e.ts


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