The use of the following test frameworks and test tools has been evaluated and tested. Other common frameworks and test tools are under evaluation. If you have any questions about using your preferred test tools, please feel free to
The Mobile Device Cloud offers a plugin for the test tool TestCafe, which allows you to run your TestCafe tests on all desktop and mobile browsers of the Mobile Device Cloud.
import { Selector } from 'testcafe';
fixture('Getting Started with TestCafe')
.page('https://devexpress.github.io/testcafe/example');
test('My first test', async t => {
await t
.typeText('#developer-name', 'MDC User')
.click('#submit-button')
.expect(Selector('#article-header').innerText).eql('Thank you, MDC User!');
});
1.
2.
3.
We support you with the installation of the necessary packages and configure them with you.
Write your tests with JavaScript in the familiar TestCafe environment.
With just one command, you can run the tests on a device of the Mobile Device Cloud: