gpt4 book ai didi

javascript - NodeError : The “file” argument must be of type string.使用 Nightmare 时收到的类型对象

转载 作者:行者123 更新时间:2023-12-03 13:23:49 24 4
gpt4 key购买 nike

我目前在做 Nightmare ...

我一直在运行这段代码:

nightmare
.goto('https://www.google.com')
.end(() => 'some value')
//prints "some value"
.then(console.log)

在2个项目中,一个在后台运行 Electron 窗口,另一个在不运行的情况下运行。

一个没有 Electron 窗口的软件可以正常工作,但是当我在另一个项目上打开 Electron 窗口时,出现此错误:

未捕获( promise )NodeError:"file"参数必须为字符串类型。收到的类型对象

我搜索了很长时间,似乎找不到任何东西。

谢谢!

更新

我正在从一个类函数运行此,例如:
Class test{
async test(){
nightmare
.goto('https://www.google.com')
.end(() => 'some value')
//prints "some value"
.then(console.log)
}

}

最佳答案

你有没有尝试过 :

nightmare
.goto('https://www.google.com')
.end(() => 'some value')
//prints "some value"
.then(data => console.log(data));

关于javascript - NodeError : The “file” argument must be of type string.使用 Nightmare 时收到的类型对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53488517/

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