2

我正在开发一个电子应用程序。主进程打开第一个渲染器(browserWindow)。当用户点击一个按钮时,这个渲染器会向主进程发送一条 IPC 消息。收到此消息后,主进程打开第二个不同的渲染器。这两个渲染器同时存在。该应用程序工作正常。

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

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

有没有办法在测试中列出 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 或其他任何东西一起使用,那将非常有帮助。

谢谢 !

4

3 回答 3

4

按照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
    });
});
于 2018-09-07T16:41:12.793 回答
2

像用户一样,Specton 只能与焦点窗口进行交互。这应该可以,但我还没有测试过:

// The docs say that app.electron gives you access to all the Electron APIs
// This should get you a list of BrowserWindows
const windows = await t.context.app.electron.BrowserWindow.getAllWindows();

// Focus the window you want to interact with
windows[1].focus();

// Do your clicking
await t.context.app.client.click('elt_of_the_scnd_renderer');
于 2018-09-04T20:02:31.437 回答
0
  it('Switch window', async () => {
    await app.client.waitUntilWindowLoaded(100000)
      .windowByIndex(0);
      .windowByIndex(1);
})
于 2020-02-10T10:31:00.797 回答