Spectron无法启动Eclipse Theia

问题描述

我想使用 spectron 测试 theia IDE Electron应用程序。

Eclipse theia是用于构建IDE的框架。扩展theia框架后,可以将发行版打包为Electron App。当前使用的Electron版本是9.3.2。我正在尝试使用Spectron 11.0.0版来测试Eclipse theia。我的测试脚本如下所示:

    var Application = require('spectron').Application
    var assert = require('assert')

    var app = new Application({
    path: '/home/karan/test-ide/electron-app/dist/TestIDE-0.0.1.AppImage',webdriverOptions: ({deprecationWarnings : false})
});

app.start().then(function () {
// Check if the window is visible
console.log("In func Start")
debugger;
return app.browserWindow.isVisible()
}).then(function (isVisible) {
// Verify the window is visible
console.log("Window visible")
debugger;
assert.equal(isVisible,true)
}).then(function () {
// Get the window's title
console.log("Windows Title")
debugger;
return app.client.getTitle()
}).then(function (title) {
// Verify the window's title
assert.equal(title,'My App')
debugger;
}).then(function () {
// Stop the application
console.log("App Stop")
debugger;
return app.stop()
}).catch(function (error) {
// Log any failures
console.error('Test Failed',error.message)
})

一旦我执行测试脚本,Spectron将无法启动Eclipse theia。 请提出我想念的东西吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)