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


TypeScript element.ElementArrayFinder類代碼示例

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


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

示例1: removeMachine

    async removeMachine() {
    
        const addMachines  = await this.valuesAddMachines.map(async (element) => {
            return await element.getText()   
            });

        await this.removeMachines.click();
        //await this.valuesAddMachines.waitForElements(1000);
        const newMachines  = await this.valuesAddMachines.map(async (element) => {
            return await element.getText()   
            });
        
        let checkedLength = false; 
        
        if(addMachines.length > newMachines.length) {
                checkedLength = true;
        };

            return checkedLength;
    }
開發者ID:Vitaliy-1000,項目名稱:jsTresh,代碼行數:20,代碼來源:addMachines.ts

示例2: checkTheAudition

 async checkTheAudition(text) {
     //await this.valuesAddMachines.waitForElements(1000);
     const addMachines  = await this.valuesAddMachines.map(async (element) => {
             return await element.getText()   
             });
     let trueAddMachines = false;
     for(let i = 0; i < addMachines.length; i++) {
         if(text == addMachines[i]){
             trueAddMachines = true;
             break;
         };
     };
     return trueAddMachines;
 }
開發者ID:Vitaliy-1000,項目名稱:jsTresh,代碼行數:14,代碼來源:addMachines.ts

示例3: filterMark

    async filterMark(textMachine) {
        await this.inputSortMark.sendKeys(textMachine);

        let EC = protractor.ExpectedConditions; 

        browser.wait(EC.elementToBeSelected($('.btn.btn-defult')), 5000);
        const but = await this.buttonFilter.get(0);
        await but.click();

        browser.wait(EC.elementToBeSelected($('.active.brand')), 5000);
        const addMachines  = await this.valuesAddMachines.map(async (element) => {
                return await element.getText()   
                });
        
        let endFilter = false;
        for(let i = 0; i < addMachines.length; i++) {
            if(textMachine == addMachines[i]) {
                endFilter = true;
                return endFilter;
            }
            
        }
        
    }
開發者ID:Vitaliy-1000,項目名稱:jsTresh,代碼行數:24,代碼來源:addMachines.ts

示例4: textArraySortPrice

    async textArraySortPrice(asertType) {
        let EC = protractor.ExpectedConditions;
        await browser.wait(EC.elementToBeClickable($('.active.price')), 2000);
        let textArr = [];
        textArr = await this.price.map(async (element) => {
                return await element.getText()   
                });
        let testSort = true;              

        for(let i = 0;i < textArr.length-1; i++) {
            const aserter = () => {
                return asertType == 'lowToHight' ? +textArr[i] > +textArr[i+1] : +textArr[i] < +textArr[i+1]
            }
                if (aserter()) {
                testSort = false
                break
            };
        };
        return testSort 
    }
開發者ID:Vitaliy-1000,項目名稱:jsTresh,代碼行數:20,代碼來源:sortTable.ts

示例5: async

 higthToLow: async () => {
     let EC = protractor.ExpectedConditions;
     await browser.wait(EC.elementToBeClickable($('.btn.btn-default')), 2000);
     const but = await this.buttonGroup.get(2);
     await but.click(); 
 }
開發者ID:Vitaliy-1000,項目名稱:jsTresh,代碼行數:6,代碼來源:sortTable.ts


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