我试着打开剧作家的检查员,但我完全没有成功。我尝试在VSCode终端上运行以下语句。
npx playwright test --debug
但我得到以下错误:
npx : The term 'npx' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ npx playwright test --debug
+ ~~~
+ CategoryInfo : ObjectNotFound: (npx:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我真的不知道该怎么办,我已经尝试了在剧作家的图书馆的命令,但我总是得到一些错误信息。
1条答案
按热度按时间z9smfwbn1#
npx
是JavaScript的东西,不是Python的东西。npx
是npm
(节点包管理器)附带的命令,必须先安装后才能使用。安装
npm
(和npx
)的说明可以在npm
存储库中找到:https://github.com/npm/cli。npx
允许您运行npm
注册表中的包,而不必先安装它们。但这通常是只有在使用JavaScript的Playwright时才会做的事情。由于你的问题被标记为
python
,我猜你会想使用Python的等价物来做这件事。关于如何进行这一操作的详细信息都在Python特定的Playwright文档中:https://playwright.dev/python/。