如何在Python上打开Playwright检查器

sqserrrh  于 2023-06-25  发布在  Python
关注(0)|答案(1)|浏览(149)

我试着打开剧作家的检查员,但我完全没有成功。我尝试在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

我真的不知道该怎么办,我已经尝试了在剧作家的图书馆的命令,但我总是得到一些错误信息。

z9smfwbn

z9smfwbn1#

  • npx是JavaScript的东西,不是Python的东西。

npxnpm(节点包管理器)附带的命令,必须先安装后才能使用。
安装npm(和npx)的说明可以在npm存储库中找到:https://github.com/npm/cli
npx允许您运行npm注册表中的包,而不必先安装它们。但这通常是只有在使用JavaScript的Playwright时才会做的事情。
由于你的问题被标记为python,我猜你会想使用Python的等价物来做这件事。关于如何进行这一操作的详细信息都在Python特定的Playwright文档中:https://playwright.dev/python/

相关问题