cypress xpath:将XPath命令添加到赛普拉斯测试运行器 源码
赛普拉斯 将XPath命令添加到测试运行程序 用npm安装 npm install -D cypress-xpath 用纱安装 yarn add cypress-xpath --dev 然后将其包含在您项目的cypress/support/index.js require ( 'cypress-xpath' ) 使用 安装后,您的cy对象将具有xpath命令。 it ( 'finds list items' , ( ) => { cy . xpath ( '//ul[@class="todo-list"]//li' ) . should ( 'have.length' , 3 ) } ) 您也可以将xpath到另一个命令之外。 it ( 'finds list items' , ( ) => { cy . xpath ( '//ul[@class="todo-list
文件列表
cypress-xpath-master.zip
(预估有个19文件)
cypress-xpath-master
.gitignore
49B
images
cypress-xpath-reference.gif
691KB
package.json
829B
.npmrc
34B
package-lock.json
243KB
src
index.js
4KB
index.d.ts
582B
暂无评论