扫一扫分享
DevExpress TestCafe 是一款基于 Web 的测试框架,它能对 Web 页面的用户界面和通过 html5、css 和 Javascript 渲染的应用进行测试。
1.支持JavaScript,TypeScript
2.使用便捷性,入门便捷性,相差不大。
3.作为测试框架完备性。testcafe本身就是一个完整的测试框架了(提供了Cases的管理,运行,失败自动重跑,错误自动截图,并发等)
4.testCafe debug模式,通过代码配置或运行时设置,可以控制执行过程中失败时进入调试模式
testcafe只需要全局安装这个库,并不需要安装lite chrome等等。还有一点就是它很具有前瞻性的支持了ts和众多es6,es7的特性。
npm install -g testcafe
import { Selector } from 'testcafe'; // first import testcafe selectors
fixture `Getting Started`// declare the fixture
.page `https://devexpress.github.io/testcafe/example`; // specify the start page
//then create a test and place your code there
test('My first test', async t => {
await t
.typeText('#developer-name', 'John Smith')
.click('#submit-button')
// Use the assertion to check if the actual header text is equal to the expected one
.expect(Selector('#article-header').innerText).eql('Thank you, John Smith!');
});
手机预览