我需要在加载页面和执行其他javascript代码之前注入javascript。
ClientScripts似乎做了我想做的事情,但在创建角色时它们不可用。
在这里,我也找不到其他方法来连接到onbeforeload页面。文章源自玩技e族-https://www.playezu.com/204768.html
有什么变通办法吗?文章源自玩技e族-https://www.playezu.com/204768.html
测试软件文章源自玩技e族-https://www.playezu.com/204768.html 文章源自玩技e族-https://www.playezu.com/204768.html
未知地区 1F
我检查了ClientScripts机制,它似乎按预期工作:
import { Role } from ‘testcafe’;
const role = Role(‘om’, async t => {
await t、 调试();
});
fixture `f`
.page `om`;
test(‘My test’, async t => {
await t.useRole(role);
await t、 调试();
})
.clientScripts({ content: `console.log(‘*****: ‘ + window.location.href );` });
请尝试此代码示例,并在执行过程中检查浏览器控制台 t、 调试() 电话。您可以看到脚本将按预期工作。