我是 Spectron 的新手,我花了很多时间进行简单的示例测试。我有一个电子应用程序,一开始有加载器,一段时间后它呈现简单的视图。我想检查标题是否等于“欢迎”这是我的测试代码:
const {Application} = require('spectron')
const chaiAsPromised = require('chai-as-promised');
describe('Application set up', function () {
this.timeout(20000)
let app;
beforeEach(async () => {
app = await new Application({
path: path-to-my-exe-electron-app
});
chaiAsPromised.transferPromiseness = app.transferPromiseness;
return app.start();
});
afterEach(async () => {
if (app && app.isRunning()) {
await app.stop();
}
});
it('example', async () => {
return app.client.waitUntilWindowLoaded()
.waitForVisible('h2', 15000)
.getText('h2')
.then(text => expect(text).toEqual('Welcome'));
})
})
结果我得到错误:错误:元素(“h2”)在15000毫秒后仍然不可见我做错了什么?我花了几个小时寻找其他 Spectron 方法来实现我的目标,我尝试采用许多解决方案但没有结果。