是否可以将报告者添加到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'))
});
我可以在脚本中添加一个部分吗?
答案 0 :(得分:2)
是的,您可以为此使用TestCafe Programming Interface及其reporter property。
但是,我不确定您要添加哪个“部分”。请澄清这一点。