CodeceptJS:NodeJS的增强型第2阶段末测试框架 源码
CodeceptJS 参考: 增压E2E测试 CodeceptJS是用于WebDriver(或其他)的端到端测试的新测试框架。 它将浏览器交互抽象为从用户角度编写的简单步骤。 验证网站主页上是否存在“欢迎”文本的简单测试如下所示: Feature ( 'CodeceptJS demo' ) ; Scenario ( 'check Welcome page on site' , ( { I } ) => { I . amOnPage ( '/' ) ; I . see ( 'Welcome' ) ; } ) ; CodeceptJS测试是: 同步的。 您无需关心回调或承诺,测试
下载地址
用户评论