脚本中的Testcafe记者

时间:2019-06-04 08:30:03

标签: automated-tests reporting e2e-testing web-testing testcafe

是否可以将报告者添加到TestCafe js文件中? 常见用法是:

testcafe chrome 'path/to/test/file.js' --reporter allure

但是也可以将其添加到脚本本身吗?在我的脚本中,我有

import { Selector } from 'testcafe';

fixture `Ordner erstellen`
    .page `https://bc3-channel.cliplister.com/`;

//It is absolutely necessary that the names are completely unique for finding elements.


test('Create and Delete Folder', async t => {
   .click(Selector('span').withText('Login'))
});

我可以在脚本中添加一个部分吗?

1 个答案:

答案 0 :(得分:2)

是的,您可以为此使用TestCafe Programming Interface及其reporter property

但是,我不确定您要添加哪个“部分”。请澄清这一点。