如何使用量角器助手?我可以参考执行此操作的任何文档吗?

时间:2018-10-25 11:33:28

标签: angular protractor

我正在使用量角器版本@ 5.4.1 我遇到了量角器助手,并使用

进行了安装
npm install —save @types/protractor-helper

在我同时拥有nodemodulesprotractor的位置创建一个单独的文件夹

我尝试使用

执行量角器
 protractor conf.js 

config.js中添加了量角器帮助器后,却抛出错误:找不到模块量角器帮助器

Conf.js Exports.config = { 框架:“茉莉”, SeleniumAddress:’’, 眼镜 :[..], 能力:{ “ BrowserName”:“ Internet Explorer”,“ version”:“ 11”, AcceptSslcrts:是的, TrustAllSSLCertificates:false, ACCEPT_SSL_CERTS:是的, }, SeleniumserverJar:’..’,

geckodriver:’..’ };

是否有任何链接或文档可清楚了解使用量角器帮助器

1 个答案:

答案 0 :(得分:0)

Ali,要使用量角器辅助程序,您必须使用:

npm install protractor-helper

文档在这里: https://www.npmjs.com/package/protractor-helper

您不会在config.js上使用,而是在测试和页面对象中使用。 在这里查看示例: Gihub repository - Protractor style guide