在package.json文件中定义npx testcafe'chrome --start-fullscreen'时,全屏无法正常工作-testcafe

时间:2019-11-20 19:00:57

标签: google-chrome testing automated-tests testcafe ui-testing

我正在学习testcafe,并且我是新手。

根据testcafe docs命令  npx testcafe 'chrome --start-fullscreen' 应该打开全屏并运行测试,这可以很好地完成工作。但是,当我在package.json文件中的scripts标签下定义了相同的命令时,它并没有打开全屏显示

  "scripts": {
    "testsOnChrome": "npx testcafe 'chrome --start-fullscreen'"

  }

感谢您的帮助

1 个答案:

答案 0 :(得分:4)

您需要将命令chrome --start-fullscreen插入双引号"而不是单引号'

使用此

"testsOnChrome": "npx testcafe \"chrome --start-fullscreen\""