Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Nightmare文档没有指定如何设置浏览器详细信息。
我猜它是这样的,但它不起作用。有任何想法吗?
const nightmare = new Nightmare({'show': show, 'BrowserWindow': {height: 900}});
文档不是很清楚,但目的是显示 Nightmare 选项被传递给 BrowserWindow,有效地使用相同的选项集。
BrowserWindow
换句话说,
const nightmare = new Nightmare({ show: show, height: 900});
... 应该管用。