作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题
当我使用testcafe-electron-browser-provider插件运行TestCafe且测试卡在“加载网页”上时,在devtools中出现以下错误。Uncaught TypeError: Cannot read property 'source' of undefined
是否有人看到过此问题或知道如何解决?
环境:
backend.js:5206 Uncaught TypeError: Cannot read property 'source' of undefined
at e (backend.js:5206)
at l (hammerhead.js:15)
at t.r._onWindowMessage (hammerhead.js:7)
at n (hammerhead.js:15)
at i (hammerhead.js:8)
at hammerhead.js:7
我的testcafe配置文件:
module.exports = {
src: '/test/specs/e2etest.js',
mainWindowUrl: './build/index.html',
appPath: './',
};
我的e2etest.js文件:
import { Selector } from 'testcafe';
fixture `TestCafe Electron Trial`
.page('../../build/index.html');
test('check title', async (t) => {
await t.expect(Selector('title').innerText).eql('Electron Application');
});
test.skip('open file menu open project', async (t) => {
await t.click("[data-test-id='fileControls-fileMenu']");
await t.click(Selector('span').withText('Open project'));
await t.click("[data-test-id='openFileDialog-browse']");
});
最佳答案
在测试执行期间使用浏览器的开发工具时,可能会导致错误。这是一个已知问题,在TestCafe documentation中进行了描述。
关于javascript - TestCafe,带有 Electron 抛出的 “Uncaught TypeError: Cannot read property '源未定义”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64820662/
我是一名优秀的程序员,十分优秀!