本文整理匯總了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();
}
示例2: assureNestedMasterComponent
async function assureNestedMasterComponent(driver: AppiumDriver) {
await driver.findElementByAutomationText("NestedMaster");
}
示例3: goBack
async function goBack(driver: AppiumDriver) {
const backButton = await driver.waitForElement("BACK");
await backButton.click();
}
示例4: assureComponentlessLazyComponent
async function assureComponentlessLazyComponent(driver: AppiumDriver) {
await driver.findElementByAutomationText("Lazy Componentless Route");
}
示例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);
});
});
示例6: gotoTeamsTab
async function gotoTeamsTab(driver: AppiumDriver) {
const btnTabTeams = await driver.findElementByAutomationText("Teams Tab");
await btnTabTeams.tap();
}
示例7: before
before(async () => {
driver = await createDriver();
await driver.resetApp();
});
示例8: after
after(async () => {
await driver.quit();
console.log("Quit driver!");
});
示例9: after
after(async () => {
await driver.resetApp();
});