如何使用 node.js 噩梦获取没有 ID 的元素

How to get an element that has no ID with node.js nightmare

我最近开始使用 nightmare,但在获取没有 ID 之类的信息时遇到了问题 例如,我有以下 HTML 代码:

<input type="submit" value="Login" name="reg">

这是一个按钮,我怎么能在上面.click()熬夜呢?

使用css属性选择器(https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors):

document.querySelector('input[name=reg]');