当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript AppiumDriver.findElementByAutomationText方法代码示例

本文整理汇总了TypeScript中nativescript-dev-appium.AppiumDriver.findElementByAutomationText方法的典型用法代码示例。如果您正苦于以下问题:TypeScript AppiumDriver.findElementByAutomationText方法的具体用法?TypeScript AppiumDriver.findElementByAutomationText怎么用?TypeScript AppiumDriver.findElementByAutomationText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在nativescript-dev-appium.AppiumDriver的用法示例。


在下文中一共展示了AppiumDriver.findElementByAutomationText方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it("should load first page", async () => {
        await driver.findElementByAutomationText("First Component");

        // ActionBar Title and item
        await driver.findElementByAutomationText("First Title");
        await driver.findElementByAutomationText("ACTION1");
    });
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:7,代码来源:tests.e2e-spec.ts

示例2: navigateToTeamItem

async function navigateToTeamItem(driver: AppiumDriver, name: string, id: string) {
    const team = await driver.findElementByAutomationText(name);
    await team.click();
    await driver.findElementByAutomationText("Team Details");
    await driver.findElementByAutomationText(id);
    await driver.findElementByAutomationText(name);
}
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:7,代码来源:tab-view-navigation.e2e-spec.ts

示例3: it

        it("should navigate to page", async () => {
            const navigationButton =
                await driver.findElementByAutomationText("ActionBarVisibility Never");
            await navigationButton.click();

            await driver.findElementByAutomationText("ShowActionBar");
        });
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:7,代码来源:page-router-outlet.e2e-spec.ts

示例4: it

    it("should navigate second(team) tab, first(player) and back in the same order ", async () => {
        await driver.findElementByAutomationText("Player List");

        // Go forward in team tab
        await selectTeamTab(driver);
        await navigateToTeamItem(driver, "Team One", "1");

        // Go forward in player tab
        await selectPlayerTab(driver);
        await navigateToPlayerItem(driver, "Player Three", "3");

        // Check both tabs
        await selectTeamTab(driver, false);
        await selectPlayerTab(driver, false);

        // Go back in player tab
        await driver.navBack();
        await driver.findElementByAutomationText("Player List");

        // Go back in team tab
        await selectTeamTab(driver, false);
        await driver.navBack();
        await driver.findElementByAutomationText("Team List");

        await selectPlayerTab(driver);
    });
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:26,代码来源:tab-view-navigation.e2e-spec.ts

示例5: it

        it("should find elements", async () => {
            firstActionItem = await driver.findElementByAutomationText("one");
            secondActionItem = await driver.findElementByAutomationText("two");

            toggleFirstButton = await driver.findElementByAutomationText("toggle 1");
            toggleSecondButton = await driver.findElementByAutomationText("toggle 2");
        });
开发者ID:NativeScript,项目名称:nativescript-angular,代码行数:7,代码来源:action-bar.e2e-spec.ts

示例6: selectPlayerTab

async function selectPlayerTab(driver: AppiumDriver, expectList = true) {
    const playerTab = await driver.findElementByAutomationText("Players");
    await playerTab.click();

    const expectedTitle = expectList ? "Player List" : "Player Details";
    await driver.findElementByAutomationText(expectedTitle);
}
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:7,代码来源:tab-view-navigation.e2e-spec.ts

示例7: it

 it("should go back to second(1) and first", async () => {
     await findAndClick(driver, "Back");
     await driver.findElementByAutomationText("Second Component: 1");
     await findAndClick(driver, "Back");
     await driver.findElementByAutomationText("First Title");
     await driver.findElementByAutomationText("ACTION1");
 });
开发者ID:NativeScript,项目名称:nativescript-angular,代码行数:7,代码来源:tests.e2e-spec.ts

示例8: selectTeamTab

async function selectTeamTab(driver: AppiumDriver, expectList = true) {
    const teamsTab = await driver.findElementByAutomationText("Teams");
    await teamsTab.click();

    const expectedTitle = expectList ? "Team List" : "Team Details";
    await driver.findElementByAutomationText(expectedTitle);
}
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:7,代码来源:tab-view-navigation.e2e-spec.ts

示例9: navigateToPlayerItem

async function navigateToPlayerItem(driver: AppiumDriver, name: string, id: string) {
    let player = await driver.findElementByAutomationText(name);
    await player.click();

    await driver.findElementByAutomationText("Player Details");
    await driver.findElementByAutomationText(id);
    await driver.findElementByAutomationText(name);
}
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:8,代码来源:tab-view-navigation.e2e-spec.ts


注:本文中的nativescript-dev-appium.AppiumDriver.findElementByAutomationText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。