我正在学习testcafe,并且我是新手。
根据testcafe docs命令
npx testcafe 'chrome --start-fullscreen'
应该打开全屏并运行测试,这可以很好地完成工作。但是,当我在package.json文件中的scripts标签下定义了相同的命令时,它并没有打开全屏显示
"scripts": {
"testsOnChrome": "npx testcafe 'chrome --start-fullscreen'"
}
感谢您的帮助
答案 0 :(得分:4)
您需要将命令chrome --start-fullscreen
插入双引号"
而不是单引号'
使用此
"testsOnChrome": "npx testcafe \"chrome --start-fullscreen\""