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


TypeScript AppiumDriver.findElementByText方法代碼示例

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


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

示例1: it

        it("Reorder items and verify listview", async () => {
            let listView;
            let value;
            const listItem = await driver.findElementByText("Gwen Peters", SearchOptions.exact);
            expect(listItem).to.exist;
            // await listItem.drag(Direction.down, 600, 0);
            if (isAndroid) {
                const wd = driver.wd();
                const action = new wd.TouchAction(driver.driver);
                action.longPress({ x: 200, y: 200 })
                    .wait(2000)
                    .moveTo({ x: 200, y: 400 })
                    .release();
                await action.perform();
                listView = await driver.findElementsByClassName("android.widget.TextView");
                value = await listView[1].text();
                expect(value).to.equal("George Cook");
            }
            else {
                await driver.driver.execute('mobile: dragFromToForDuration', {
                    duration: 2.0,
                    fromX: 100,
                    fromY: 105,
                    toX: 100,
                    toY: 242
                });
                listView = await driver.findElementsByClassName("XCUIElementTypeStaticText");
                value = await listView[1].getAttribute("value");
                let element = await driver.findElementByText("George Cook");
                expect(element).to.exist;
                // TODO: Add assertion for listview items
            }

        });
開發者ID:telerik,項目名稱:nativescript-ui-samples-angular,代碼行數:34,代碼來源:tests2.e2e.ts

示例2: it

 it("should return back an item from the Recent list", async () => {
     await clickOnCrossOrCheckboxBtn();
     const doneButton = await driver.findElementByText(doneButtonText);
     await doneButton.click();
     const appleItem = await driver.findElementByText(fruit);
     expect(appleItem).to.exist;
 });
開發者ID:tjvantoll,項目名稱:sample-Groceries,代碼行數:7,代碼來源:groceries.e2e.ts

示例3: it

 it("Navigate to Validators page", async () => {
     await navigateBackToHome(driver);
     const validationTitle = await driver.findElementByText("Validation", SearchOptions.exact);
     await validationTitle.click();
     const validators = await driver.findElementByText("Validators", SearchOptions.exact);
     await validators.click();
 });
開發者ID:telerik,項目名稱:nativescript-ui-samples-angular,代碼行數:7,代碼來源:test.e2e.ts

示例4: it

 it("Tap disable btn and verify swipe is disabled", async () => {
     const disableBtn = await driver.findElementByText("DISABLE", SearchOptions.exact);
     await disableBtn.click();
     let item = await driver.findElementByText("Joel Robertson", SearchOptions.exact);
     expect(item).to.exist;
     if (isAndroid) {
         const rectangle = await item.getRectangle();
         const centerX = rectangle.x + rectangle.width / 2;
         const centerY = rectangle.y + rectangle.height / 2;
         const wd = driver.wd();
         const action = new wd.TouchAction(driver.driver);
         action.press({ x: centerX, y: centerY })
             .wait(100)
             .moveTo({ x: 10, y: centerY })
             .release();
         await action.perform();
         const selection = await driver.compareElement(item, "item");
         expect(selection).to.equal(true);
     }
     else {
         await driver.driver.execute('mobile: dragFromToForDuration', {
             duration: 2.0,
             fromX: 150,
             fromY: 150,
             toX: 50,
             toY: 150
         });
         const del = await driver.findElementByTextIfExists("delete", SearchOptions.exact);
         expect(del).to.be.undefined;
     }
 });
開發者ID:telerik,項目名稱:nativescript-ui-samples-angular,代碼行數:31,代碼來源:tests3.e2e.ts

示例5: it

        it("should open Async Data Fetch view", async () => {
            await navigateBackToHome(driver);
            const asyncDataFetchButton = await driver.findElementByText(asyncDataFetchText);
            await asyncDataFetchButton.click();
            await driver.wait(1000);
            const asyncDataFetchTitle = await driver.findElementByText(asyncDataFetchText);
            expect(asyncDataFetchTitle).to.exist;

            const textField = await driver.findElementByClassName(driver.locators.getElementByName("textfield"));
            if (isAndroid) {
                await textField.sendKeys("a");
                // await clickBelowElement(textField, driver);
                // let aiomeAirport = await driver.findElementByTextIfExists("Aiome", SearchOptions.exact, 500);
                // expect(aiomeAirport).not.to.exist;
                await driver.wait(5000);
                await clickBelowElement(textField, driver);
                const aiomeAirport = await driver.findElementByTextIfExists("Aiome");
                expect(aiomeAirport).to.exist;
            }

            // Error prompt test
            // const textField = await driver.findElementByClassName(driver.locators.getElementByName("textfield"));
            // await textField.sendKeys("B");
            // const progressIndicator = await driver.findElementByText("In progress");
            // expect(progressIndicator).to.exist;
            // const buttons = await driver.findElementsByClassName(driver.locators.button);
            // await buttons[4].click();
            // await driver.wait(1000);
            // const returnButton = await driver.findElementByTextIfExists("Return");
            // if(returnButton !== undefined){
            //     await driver.driver.hideDeviceKeyboard("Return");
            //     await driver.wait(1000);
            // }
        });
開發者ID:telerik,項目名稱:nativescript-ui-samples-angular,代碼行數:34,代碼來源:tests.e2e.ts

示例6: it

    it("should play animation simultaneously", async () => {
        const button = await driver.findElementByText("Animate Simultaneously", SearchOptions.exact);
        await button.click();

        const label = await driver.findElementByText("{{N4}}", SearchOptions.exact);
        assert.isTrue(await label.isDisplayed());
    });
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:7,代碼來源:animation.e2e-spec.ts


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