7

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

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

我正在使用以下 Spectron 测试代码:

// 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 实例并启动一个具有类似结果的新实例。

4

2 回答 2

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
于 2017-05-09T13:51:58.607 回答
0

按照片段集的工作,

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"

于 2017-08-07T09:31:28.990 回答