本文整理汇总了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();
});