本文整理汇总了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");
});
示例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);
}
示例3: it
it("should navigate to page", async () => {
const navigationButton =
await driver.findElementByAutomationText("ActionBarVisibility Never");
await navigationButton.click();
await driver.findElementByAutomationText("ShowActionBar");
});
示例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);
});
示例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");
});
示例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);
}
示例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");
});
示例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);
}
示例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);
}