如何在 Nightmare.js 中设置 Electron 大小?
How to set Electron size in Nightmare.js?
Nightmare docs don't specify how to set the browser 详情。
我猜是这样的,但是不行。有什么想法吗?
const nightmare = new Nightmare({'show': show, 'BrowserWindow': {height: 900}});
文档不是非常清楚,但目的是表明 Nightmare 选项已传递给 BrowserWindow
,有效地使用相同的选项集。
换句话说,
const nightmare = new Nightmare({ show: show, height: 900});
...应该可以。
Nightmare docs don't specify how to set the browser 详情。
我猜是这样的,但是不行。有什么想法吗?
const nightmare = new Nightmare({'show': show, 'BrowserWindow': {height: 900}});
文档不是非常清楚,但目的是表明 Nightmare 选项已传递给 BrowserWindow
,有效地使用相同的选项集。
换句话说,
const nightmare = new Nightmare({ show: show, height: 900});
...应该可以。