1

我正在尝试使用 spectron 和 mocha 测试我的电子应用程序,这是我的文件“first.js”,其中包含我的测试:

const assert = require('assert');
const path = require('path');
const {Application} = require('spectron');
const electronPath = require('electron');


describe('GULP Tests', function () {
    this.timeout(30000)

    const app = new Application({
        path: electronPath,
        args: [path.join(__dirname, '..', 'main.js')]
    });


    //Start the electron app before each test
    before(() => {

        return app.start();
    });

    //Stop the electron app after completion of each test
    after(() => {
        if (app && app.isRunning()) {
            return app.stop();
        }
    });

    it('Is window opened', async () => {
        const count = await app.client.getWindowCount();
        return assert.equal(count, 1);
    });

    it('Clicks on the project creation button', async () => {
       await app.client.waitUntilWindowLoaded();
       const title = await app.client.
       console.log(title);
       return assert.equal(title, 'Welcome to GULP, !');
    });

});

我的第一个测试通过了,但第二个测试我想点击一个元素,但我的 app.client 不包含 .click 方法,也没有 getText 或 getHTML。我尝试从 webdriverio 导入浏览器,但这是同样的问题,我在测试时收到错误消息说这些方法不存在。我已经把 spectron 文档弄红了,他们经常使用 .click 和 .getText 方法,为什么我没有得到它们?我已经按照文档中的说明导入了 spectron。

谢谢。

4

1 回答 1

0

我在同一个问题上挣扎了一段时间。经过反复试验,我将异步方法更改为正常功能。

it('Clicks on the project creation button', function() {
   app.client.waitUntilWindowLoaded();
   const title = await app.client.
   console.log(title);
   return assert.equal(title, 'Welcome to GULP, !');
});

奇怪,但它对我有用。希望它有所帮助。

于 2020-08-05T11:34:53.307 回答