TestCafe RPC
RPC library for the TestCafé. It allows you to create a single TestCafé instance and then interact with it programmatically from any machine in your network.
Install
$ npm install testcafe-rpc
Running a server
var TestCafeRemote = ; //Options for TestCafé instancevar opt = controlPanelPort: 1337 servicePort: 1338 testsDir: 'YOUR_TESTS_DIR' browsers: 'Mozilla Firefox': path: "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe" icon: "ff" cmd: "-new-window" rpcPort = 1339; //Create TestCafé server instance with given options which can be accessed via RPC on port 1339.var testCafeServer = opt rpcPort; //Returned object exposes standard TestCafé API, so you can use it as a regular TestCafé instance.testCafeServer;
Running a client
var TestCafeRemote = ; var rpcHostname = 'myhostname' rpcPort = 1339; //Connect to the existent TestCafé server (if you running both client and server on the same machine//hostname-parameter can be ommited).var testCafeClient = rpcPort rpcHostname; //Client can be used as a regular TestCafé instance with exception that listAvailableBrowsers() and listConnectedWorkers()//are asynchronous methods.testCafeClient;
Need more help to get started?
Visit TestCafé Continuous integration guide and Continuous integration API reference. If you have any additional questions or suggestions don't hesitate to ask using DevExpress Support Center.