gpt4 book ai didi

javascript - 每晚在 Test Cafe Studio 中运行测试

转载 作者:行者123 更新时间:2023-11-28 20:02:03 24 4
gpt4 key购买 nike

我在 Test Cafe Studios 中创建了一个测试。我想让该测试每晚自动运行,而不需要用户运行测试(打开程序,单击开始等)这个软件可以实现这样的事情吗?如果有一些如何解决这个问题的例子会很有帮助!我已经粘贴了一些非常基本的测试代码,只是检查页面是否会打开。我已经用问题的一般信息填写了一些 ''

提前致谢。

Windows 任务计划程序

import { Selector } from 'testcafe';

fixture `svdemo`
.page `my website here `
.httpAuth({
username: 'username',
password: 'password',
domain: 'domain'
});

test('Visit Each Page', async t => {
await t
.click(Selector('span').withText('Page1'))
.click(Selector('a').withText('Homepage'))
.click(Selector('a').withText('Page2'))
.click(Selector('a').withText('Homepage'))
.click(Selector('a').withText('Page3'));

});

我希望看到测试运行并在每晚自行通过。

最佳答案

为此,您需要使用任何持续集成系统。 CI 系统支持自动执行测试,而不是使用 UI 手动运行测试。查看有关如何将 TestCafe 与现代一起使用的主题 Continuous Integration系统。作为另一种方式,您可以尝试使用此处描述的 Windows 任务计划程序 What is the best way to run Node script continuously on Windows (for example, automatically run it daily)?

关于javascript - 每晚在 Test Cafe Studio 中运行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57165158/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com