javascript - 具有异步功能的 promise 不等待履行

标签 javascript promise async-await jasmine allure

过去两天我一直在努力解决 Promise 和 async/await 的问题。我正在尝试配置我的 protractor.conf.js,它将在诉讼开始时获取浏览器名称,并将加入诉讼名称。我以自定义方式编写了 jasmine allure reporter 代码,以便我可以异步获取浏览器名称,然后与套装名称一起使用。但没有任何工作正常。在我试过的代码中,我只得到套装名称。几秒钟后浏览器名称。因此,我无法在套装名称中使用该浏览器名称。这是我的详细代码

已编辑

   var AllureReporter = function CustomJasmine2AllureReporter(userDefinedConfig, allureReporter) {


    let browser = {
     getCapabilities: function() {
        return new Promise(resolve => {
            setTimeout(() => {
                resolve({
                    get: str => str
                 });
            }, 2000);
        });
    }
};

    var result;
    let bName = (async () => {
        try {
            var result = (await browser.getCapabilities()).get('Browser Name');
            return result;
        } catch (err) {
            return "Error or smth"
        }
        })();

        this.suiteStarted = function(suite) {
                this.allure.startSuite(suite.fullName + result);
                console.log(suite.fullName + result);

        };

        // other methods like spec done,, spec description.

    }

可以更改的来自 Allure 的索引代码是

'use strict';
var assign = require('object-assign'),
            Suite = require('./beans/suite'),
            Test = require('./beans/test'),
            Step = require('./beans/step'),
            Attachment = require('./beans/attachment'),
            util = require('./util'),
            writer = require('./writer');

function Allure() {
    this.suites = [];
      this.options = {
            targetDir: 'allure-results'
            };
        }
    Allure.prototype.setOptions = function(options) {
            assign(this.options, options);
        };

        Allure.prototype.getCurrentSuite = function() {
            return this.suites[0];
        };



        Allure.prototype.startSuite = function(suiteName, timestamp) {

        this.suites.unshift(new Suite(suiteName,timestamp));
        };


    module.exports = Allure;

和 Suit.js 类

    function Suite(name, timestamp) {
        this.name = name;
        this.start = timestamp || Date.now();
        this.testcases = [];
    }
    Suite.prototype.end = function(timestamp) {
        this.stop = timestamp || Date.now();
    };


    Suite.prototype.addTest = function(test) {
        this.testcases.push(test);
    };

    Suite.prototype.toXML = function() {
        var result = {
            '@': {
                'xmlns:ns2' : 'urn:model.allure.qatools.yandex.ru',
                start: this.start
            },
            name: this.name,
            title: this.name,
            'test-cases': {
                'test-case': this.testcases.map(function(testcase) {
                    return testcase.toXML();
                })
            }
        };


        if(this.stop) {
            result['@'].stop = this.stop;
        }

        return result;
    };

    module.exports = Suite;

我在编辑问题后得到这个输出。结果在套装名称中未定义

Executing 7 defined specs...

Test Suites & Specs:
Test for correct login undefined

1. Test for correct login 
(node:9764) [DEP0005] DeprecationWarning: Buffer() is deprecated due to 
security and usability issues. Please use the Buffer.alloc(), 
Buffer.allocUnsafe(), or Buffer.from() methods instead.
√ Navigate to the login page (5520ms)
√ Click onto language button (406ms)
√ English Language is selected (417ms)
√ Correct user name is written into email field (609ms)
√ Correct password is written into password field (486ms)
√ Login button is clicked and home page is opened with Machine on left top 

菜单(5622 毫秒) √ 登出按钮被点击并重定向到登录页面(4049ms)

7 项规范,0 项失败 在 17.127 秒内完成

我想在“Test Suites & Specs:”行之后获取浏览器名称,并想添加带有套件名称的名称。

最佳答案

要使用 await 的函数应该是异步的。 我为你做了一个小例子。希望对你有帮助

//The function we want to use wait in should be async!
async function myFunction() {
    //Using callback
    thisTakeSomeTime().then((res) => console.log(res)); //Will fire when time out is done. but continue to the next line

    //Using await
    let a = await thisTakeSomeTime();
    console.log(a);//will fire after waiting. a will be defined with the result.
}

function thisTakeSomeTime() {
    return new Promise((res) => {
        setTimeout(()=>{res("This is the result of the promise")}, 5000)
    })
}

myFunction();

关于javascript - 具有异步功能的 promise 不等待履行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54180380/

相关文章:

javascript - Chartjs 隐藏数据集图例 v3

php - Ajax jquery问题

javascript - 在 Javascript 中将长时间运行的同步函数转换为异步函数

node.js - 如何从函数返回数据

c# - ASP.NET MVC 5 异步上下文管理

javascript - Uncaught ReferenceError : Object is not defined

javascript - 发送来自 reducer 的数据之前调用 action creator 的组件

node.js - EventEmitter 位于 Promise 链的中间

c# - RabbitMq 以异步方式处理接收到的消息

c# - async & await - 如何等到所有任务完成?