要在 Cypress 中使用旧版本的 Chrome 运行测试,你可以按照以下步骤进行操作:
cypress.json
中,添加以下配置:{
"chromeWebSecurity": false,
"chromeVersion": "89.0.4389"
}
chromeWebSecurity
设置为 false
可以禁用 Chrome 的安全策略,以便在测试中处理跨域的请求。chromeVersion
设置为你想要使用的 Chrome 版本号。在这个例子中,版本号设置为 "89.0.4389"。npx cypress open --browser chrome --config chromeWebSecurity=false
--browser chrome
参数指定使用 Chrome 浏览器运行测试。--config chromeWebSecurity=false
参数同样禁用 Chrome 的安全策略。Cypress 将会自动使用你指定的 Chrome 版本运行测试。
请注意,以上步骤中我们使用了 chromeWebSecurity=false
禁用了 Chrome 的安全策略,这样可以让测试更灵活,但同时也会带来一定的安全风险。在实际的生产环境中,建议使用最新的 Chrome 版本并启用默认的安全策略。
此外,我们也提到了腾讯云的相关产品。腾讯云提供了一系列的云计算服务,包括云服务器、云数据库、对象存储等。你可以访问 腾讯云官方网站了解更多关于腾讯云的信息和产品详情。
领取专属 10元无门槛券
手把手带您无忧上云