从 webdriver.io 获取数据后动态构建 Mocha 测试

Build Mocha test dynamically after getting data from webdriver.io(从 webdriver.io 获取数据后动态构建 Mocha 测试)
本文介绍了从 webdriver.io 获取数据后动态构建 Mocha 测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在寻找一种在异步获取数据后定义 Mocha 测试的解决方案.

I'm looking for a solution to define Mocha tests after getting data asynchronously.

目前,我使用 gulp-webdriver 通过 Selenium 获取 HTML 内容.我想测试某些 HTML 标签结构.

For now, I use gulp-webdriver to getting HTML content with Selenium. And I want tests certain HTML tags structure.

例如,我想从 HTML 页面中获取所有按钮结构.

For example, I want to get all buttons structure from an HTML page.

1° 在 Mocha Before() 中,我得到按钮:

1° In Mocha Before(), I get buttons :

var buttons = browser.url("url").getHTML("button");

2° 然后,我想在单独的 it 中测试每个按钮:

2° And after that, I want tests each button in a separate it :

buttons.forEach(function(button) {  it() }); 

找到的唯一解决方案是在使用 data_driven 启动 Mocha 测试之前使用 Gulp 加载 HTML 和提取按钮或 leche.withData 插件.

The only solution found is loading HTML and extract buttons with Gulp before launch Mocha test with data_driven or leche.withData plugin.

您知道直接在 Mocha 测试定义中的另一种解决方案吗?

Do you know another solution directly in Mocha test definition?

提前致谢,

推荐答案

似乎不可能用 mocha 动态创建 it() 测试.

It doesn't seem possible to dynamically create it() tests with mocha.

我终于像这样组织我的测试了:

I finally organise my test like this :

it('Check if all tag have attribute', function() {
        var errors = [];
        elements.forEach(function(element, index, array) {
            var $ = cheerio.load(element);
            var tag = $(tagName);
            if (tag.length) {
                if (!tag.attr(tagAttr)) errors.push(element);
            }
        });
        expect(errors).to.be.empty;
    }
}

这篇关于从 webdriver.io 获取数据后动态构建 Mocha 测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I can get a text of all the cells of the table using testcafe(如何使用 testcafe 获取表格中所有单元格的文本)
node_modules is not recognized as an internal or external command(node_modules 未被识别为内部或外部命令)
How can I create conditional test cases using Protractor?(如何使用 Protractor 创建条件测试用例?)
PhantomJS and clicking a form button(PhantomJS 并单击表单按钮)
Clicking #39;OK#39; on alert or confirm dialog through jquery/javascript?(在警报上单击“确定或通过 jquery/javascript 确认对话框?)
QunitJS-Tests don#39;t start: PhantomJS timed out, possibly due to a missing QUnit start() call(QunitJS-Tests 不启动:PhantomJS 超时,可能是由于缺少 QUnit start() 调用)