我正在使用量角器版本@ 5.4.1 我遇到了量角器助手,并使用
进行了安装npm install —save @types/protractor-helper
在我同时拥有nodemodules
和protractor
的位置创建一个单独的文件夹
我尝试使用
执行量角器 protractor conf.js
在config.js
中添加了量角器帮助器后,却抛出错误:找不到模块量角器帮助器。
Conf.js Exports.config = { 框架:“茉莉”, SeleniumAddress:’’, 眼镜 :[..], 能力:{ “ BrowserName”:“ Internet Explorer”,“ version”:“ 11”, AcceptSslcrts:是的, TrustAllSSLCertificates:false, ACCEPT_SSL_CERTS:是的, }, SeleniumserverJar:’..’,
geckodriver:’..’ };
是否有任何链接或文档可清楚了解使用量角器帮助器
答案 0 :(得分:0)
Ali,要使用量角器辅助程序,您必须使用:
npm install protractor-helper
文档在这里: https://www.npmjs.com/package/protractor-helper
您不会在config.js上使用,而是在测试和页面对象中使用。 在这里查看示例: Gihub repository - Protractor style guide