簡體   English   中英

量角器端到端測試中的異步執行

[英]asynchronous execution in protractor end to end tests

我已經編寫了一個函數,該函數返回一個值。 在我的主要我叫這樣的功能:

var fn_return_val = lesson.select_lesson(lesson1_text);  
console.log("returned value is : " + fn_return_val);

我的函數實現就像(other file.js)一樣:

module.exports = {
 select_lesson:
    function select_lesson(lesson_name) {

        console.log('\n ************************* Lessson name: ' + lesson_name);
        var desiredOption, status;
        var repeter = element.all(by.repeater('item in items'));

        repeter.then(function (items) {
            items.forEach(function (icon) {
                console.log('\n ************************* item');
                icon.getText().then(function (txt) {
                    if (txt == lesson_name) {
                        desiredOption = icon;
                    }
                })
            }).then(function clickOption() {
                if (desiredOption) {
                    var el = desiredOption.all(by.css('[ng-click="launchActivity()"]'));
                    var el_progress = desiredOption.all(by.css('.pna-progress'));
                    var abc = el.getAttribute('value').then(function (txt) {
                        status = txt;
                        return status
                    });
                    el_progress.getAttribute('style').then(function (progress) {
                        console.log('\n ************************* Lessson progress : ' + progress);
                    });
                    el.click();
                }
            });
        });
    }

};

問題在於函數正在返回“未定義”值,並且打印語句console.log("returned value is : " + fn_return_val); 在函數實現之前執行

誰能幫助我解決這個問題?

這全部與承諾和量角器的控制流程有關

您需要解決承諾並在其中記錄結果, then

lesson.select_lesson(lesson1_text).then(function(fn_return_val) {
    console.log("returned value is : " + fn_return_val);
});

而且您還需要從函數返回:

function select_lesson(lesson_name) {

    ...

    // return here
    return repeter.then(function (items) {
        ...
        }).then(function clickOption() {
            ...
        });
    });
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM