I have my testRunner for tests.
But the problem is -> how i can add the browser resolution in test
跑步者,因为我不想将其添加到我的测试中。 感谢您的帮助。
runner
.src(testFiles)
.browsers('chrome')
.reporter('html', stream)
.run()
.then(failedCount => {
console.log(failedCount);
testcafe.close();
您可以通过cmd参数管理浏览器的分辨率。由于 Chrome 支持--window-size
参数,因此您可以将其传递给运行器的 .browsers 方法。请参阅以下示例:
const createTestCafe = require('testcafe');
let testcafe = null;
createTestCafe('localhost', 1337, 1338)
.then(tc => {
testcafe = tc;
const runner = testcafe.createRunner();
return runner
.src('my-tests.js')
.browsers(['chrome --window-size=1000,500', 'chrome --window-size=500,200'])
.run();
})
.then(failedCount => {
console.log('Tests failed: ' + failedCount);
testcafe.close();
});
在这里,我在两个Chrome实例中运行测试,但窗口大小不同
另请参阅以下文章 https://devexpress.github.io/testcafe/documentation/using-testcafe/programming-interface/runner.html#browsers 以查看使用.browsers
方法的不同方法