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