gpt4 book ai didi

javascript - 如何使用 Spectron 访问客户端窗口 javascript 全局变量

转载 作者:行者123 更新时间:2023-11-29 16:00:51 28 4
gpt4 key购买 nike

我正在尝试使用 Spectron 测试 Electron 应用程序。但我无法测试客户端窗口 javascript 全局变量。这是我的简化代码。请帮我。谢谢。

index.html

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MY ELECTRON</title>
<script type="text/javascript" src="script.js"></script>
<link href="./style.css" rel="stylesheet">
</head>
<body>
</body>
</html>

脚本.js

let mode;
function onload_func(){
mode = 'normal';
}
window.onload = onload_func;

规范.js

const Application = require('spectron').Application
const assert = require('assert')
const electronPath = require('electron')
const path = require('path')
let app;
describe('Application launch', function () {
this.timeout(10000)
beforeEach(function () {
app = new Application({
path: electronPath,
args: [path.join(__dirname, '../src')]
})
return app.start()
})
afterEach(function () {
if (app && app.isRunning()) {
return app.stop()
}
})
it('initial mode',function(){
assert.equal(app.client.mode,'normal');
})
})

最佳答案

我不确定它是否能解决您的特定测试,但 app.browserWindow 应该可以解决问题,因为正如他们所说:

It provides you access to the current BrowserWindow and contains all the APIs.

请注意,它是 require('electron').remote.getCurrentWindow()

的别名

阅读更多:https://github.com/electron/spectron#browserwindow

关于javascript - 如何使用 Spectron 访问客户端窗口 javascript 全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53472817/

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