请详细告诉我..
我有电子应用程序,但我有电子应用程序,但是我想使用量角器框架实现自动化。
指导我。
答案 0 :(得分:0)
您应该尝试使用Spectron
https://electronjs.org/spectron
Spectron是用于电子应用的测试工具。您可以在将其打包成exe文件后进行测试,也可以通过提及main.js立即开始测试
npm install --save-dev spectron
通过npm安装spectron。下面的示例将mocha用于断言。
要从命令行启动并运行,请执行以下操作:
在本地安装mocha作为开发人员依赖项。
npm i mocha -D
创建如下所示的规范文件
const Application = require('spectron').Application
const assert = require('assert')
const electronPath = require('electron')
const path = require('path')
const chai = require('chai');
const chaiAsPromised = require('chai-as-promised');
global.before(() => {
chai.should();
chai.use(chaiAsPromised);
});
describe('Application launch', function () {
this.timeout(10000)
beforeEach(function () {
const opts = {
path: './your.exe'
};
const app = new Application(opts);
return app.start().then((app) => {
chaiAsPromised.transferPromiseness = app.transferPromiseness;
return app;
})
})
afterEach(function () {
if (this.app && this.app.isRunning()) {
return this.app.stop()
}
})
it('shows an initial window', function () {
return this.app.client.getWindowCount().then(function (count) {
assert.equal(count, 1)
// Please note that getWindowCount() will return 2 if `dev tools` are opened.
// assert.equal(count, 2)
})
})
})
通过以下方式运行测试:
mocha spec.js