可以从UI运行npm脚本

时间:2019-02-21 19:38:23

标签: angular6 angular-e2e

不知道这是否可行,但我想在运行e2e脚本的6号角页面上添加一个按钮(即“ npm run e2e”)。这样做的想法是为PO运行e2e测试提供一种简便的方法。 e2e测试用testCafe编写。这可能吗?

我找到了这些,但并不是我要找的

how to run protractor test from UI or web interface - just select scenario from github and run

How to run a protractor test from a UI against an angular app

1 个答案:

答案 0 :(得分:1)

浏览器无法执行任何npm脚本。

最简单的解决方案是在PO的计算机上依次安装一个批处理文件:

git clone < e2e-repo >
cd < e2e-repo >
npm install  
npm run e2e