标签:ESS examples 双击 end nbsp 打开 http mic UNC
End-to-End
基于js
1 npm install cypress --save-dev
打开
用VScode打开目录文件
在examples目录下新建baidu.js文件
1 describe(‘My First Test‘, function () { 2 it(‘Does not do much!‘, function () { 3 cy.visit("https://www.baidu.com") 4 5 cy.get("#kw", {timeout: 2000}).type("cypress test") 6 7 cy.wait(100) 8 9 cy.get("#su", { timeout: 2000 }).click() 10 11 }) 12 })
在Cypress下会自动显示baidu.js 双击运行即可
标签:ESS examples 双击 end nbsp 打开 http mic UNC
原文地址:https://www.cnblogs.com/pegawayatstudying/p/12769662.html