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


TypeScript nativescript-dev-appium.AppiumDriver類代碼示例

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


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

示例1: backActivatedRoute

async function backActivatedRoute(driver: AppiumDriver) {
    const btnBack = await driver.findElementByAutomationText("Back(ActivatedRoute)");
    await btnBack.tap();
}
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:4,代碼來源:home-tabs.e2e-spec.ts

示例2: assureNestedMasterComponent

async function assureNestedMasterComponent(driver: AppiumDriver) {
    await driver.findElementByAutomationText("NestedMaster");
}
開發者ID:NativeScript,項目名稱:nativescript-angular,代碼行數:3,代碼來源:router.e2e-spec.ts

示例3: goBack

async function goBack(driver: AppiumDriver) {
    const backButton = await driver.waitForElement("BACK");
    await backButton.click();
}
開發者ID:NativeScript,項目名稱:nativescript-angular,代碼行數:4,代碼來源:router.e2e-spec.ts

示例4: assureComponentlessLazyComponent

async function assureComponentlessLazyComponent(driver: AppiumDriver) {
    await driver.findElementByAutomationText("Lazy Componentless Route");
}
開發者ID:NativeScript,項目名稱:nativescript-angular,代碼行數:3,代碼來源:router.e2e-spec.ts

示例5: describe

describe("Nested navigation + page navigation", () => {
    let driver: AppiumDriver;

    before(async () => {
        driver = await createDriver();
        await driver.resetApp();
    });

    it("should find First", async () => {
        await assureFirstComponent(driver);
    });

    it("should navigate to Second(1)/master", async () => {
        await findAndClick(driver, "GO TO SECOND");

        await assureSecondComponent(driver, 1)
        await assureNestedMasterComponent(driver);
    });

    it("should navigate to Second(1)/detail(1)", async () => {
        const detailBtn = await driver.findElementByAutomationText("DETAIL 1");
        detailBtn.click();

        await assureSecondComponent(driver, 1)
        await assureNestedDetailComponent(driver, 1);
    });

    it("should navigate to Second(2)/master", async () => {
        const navigationButton =
            await driver.findElementByAutomationText("GO TO NEXT SECOND");
        navigationButton.click();

        await assureSecondComponent(driver, 2)
        await assureNestedMasterComponent(driver);
    });

    it("should navigate to Second(2)/detail(2)", async () => {
        const detailBtn = await driver.findElementByAutomationText("DETAIL 2");
        detailBtn.click();

        await assureSecondComponent(driver, 2)
        await assureNestedDetailComponent(driver, 2);
    });

    it("should navigate to First", async () => {
        await findAndClick(driver, "GO TO FIRST");

        await assureFirstComponent(driver);
    });

    it("should navigate the whole stack", async () => {
        await goBack(driver);
        await assureSecondComponent(driver, 2)
        await assureNestedDetailComponent(driver, 2);

        await goBack(driver);
        await assureSecondComponent(driver, 2)
        await assureNestedMasterComponent(driver);

        await goBack(driver);
        await assureSecondComponent(driver, 1)
        await assureNestedDetailComponent(driver, 1);

        await goBack(driver);
        await assureSecondComponent(driver, 1)
        await assureNestedMasterComponent(driver);

        await goBack(driver);
        await assureFirstComponent(driver);
    });
});
開發者ID:NativeScript,項目名稱:nativescript-angular,代碼行數:71,代碼來源:router.e2e-spec.ts

示例6: gotoTeamsTab

async function gotoTeamsTab(driver: AppiumDriver) {
    const btnTabTeams = await driver.findElementByAutomationText("Teams Tab");
    await btnTabTeams.tap();
}
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:4,代碼來源:home-tabs.e2e-spec.ts

示例7: before

 before(async () => {
     driver = await createDriver();
     await driver.resetApp();
 });
開發者ID:NativeScript,項目名稱:nativescript-angular,代碼行數:4,代碼來源:router.e2e-spec.ts

示例8: after

 after(async () => {
     await driver.quit();
     console.log("Quit driver!");
 });
開發者ID:NathanWalker,項目名稱:nativescript-angular,代碼行數:4,代碼來源:home-tabs.e2e-spec.ts

示例9: after

 after(async () => {
     await driver.resetApp();
 });
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:3,代碼來源:android-back-button.e2e-spec.ts


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