使用spectron测试电子应用程序重新启动时丢失webdriverio会话

时间:2017-03-04 15:27:18

标签: electron webdriver-io spectron

我使用spectron对我的电子应用运行集成测试。除了尝试测试应用程序设置在应用程序重新启动之间正确保留之外,一切正常。

在运行测试时,我的应用程序会为每个测试启动新的临时userData目录,以确保测试被隔离。这意味着持久性测试需要理想地在单个测试中进行,为实现这一点,我必须在测试过程中重新启动应用程序。有一个app.restart方法,所以必须得到支持吗?

我使用以下光谱测试代码:

// save some settings here

await app.restart();
await app.client.waitUntilWindowLoaded()

// do some more checking to ensure the app is fully loaded
// check the settings here

但是我收到以下错误:

Error: waitUntilWindowLoaded Promise was rejected with the following reason: 
Error: A session id is required for this command but wasn't found in the response payload

这样做的正确方法是什么?我还尝试停止Application实例并开始一个具有类似结果的新实例。

2 个答案:

答案 0 :(得分:0)

这似乎有效

// save some settings here

await app.stop();

app = new Application({ ... });
await app.start();
await app.client.waitUntilWindowLoaded();

// do some more checking to ensure the app is fully loaded
// check the settings here

答案 1 :(得分:0)

在snippsets工作之后,



import test from 'ava'
import util from '../util'

test(async t => {
  // This runs after each test and other test hooks, even if they failed
  let app = util.createApp()
  app = await util.waitForLoad(app, t)
  await app.restart()
  await app.client.waitUntilWindowLoaded()
  // app = await util.waitForLoad(app, t)
})




适用于"spectron": "^3.5.0"