gpt4 book ai didi

mocha.js - 使用 spectron 访问多个渲染器

转载 作者:行者123 更新时间:2023-12-03 12:21:12 27 4
gpt4 key购买 nike

我正在开发一个 Electron 应用程序。主进程打开第一个渲染器 (browserWindow)。当用户单击按钮时,此渲染器会向主进程发送一条 IPC 消息。收到此消息后,主进程将打开第二个不同的渲染器。这两个渲染器同时存在。该应用程序运行良好。

然后,使用 Spectron 测试这个应用程序,如何访问两个渲染器?问题是 app.rendererProcess 总是返回第一个渲染器。

这是与 app.client 相同的问题,它始终包含第一个渲染器的 WebdriverIO browser 对象,而不是第二个渲染器。

有没有办法在测试中列出 Spectron 应用程序的所有进程?是否可以访问第二个渲染器的 browser 对象?

使用 AVA:

test.(async t => {
// the application is open before the test
// at this point, the first renderer is open

// click on the button to open the second renderer
await t.context.app.client.click('#bt_openSecondRenderer');

// wait for the second renderer to open

// error: this element doesn't exist
await t.context.app.client.click('elt_of_the_scnd_renderer');
});

我正在使用 AVA,但我认为这不是问题所在。因此,如果有人知道如何使它与 Mocha 或其他任何东西一起使用,那将非常有帮助。

谢谢!

最佳答案

遵循 Tim answer 给出的理念,我们可以使用 WebDriverIO 来聚焦所需的窗口,而不是使用 BrowserWindow:

test.(async t => {
// here, t.context.app.client handles the first window
await t.context.app.client.windowByIndex(1).then(() => {
// here, t.context.app.client handles the second window
});
});

关于mocha.js - 使用 spectron 访问多个渲染器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52130941/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com