Можно ли добавить репортера в js-файл TestCafe?Обычно используется:
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'))
});
Могу ли я добавить раздел внутри скрипта?