SideeX JavaScript API is a JS library running on a webpage for recording and playing web browsing behavior. As opposed to acting as a browser web extension (SideeX 2), the API can be directly embedded and used within a webpage via JavaScript.
npm i sideex-api
import {SideeX} from "sideex-api"
/* or
var {SideeX} = require('sideex-api')
*/
var sideex = new SideeX();
sideex.recorder.start();//start recording
/*
Record a command
For example: click at anywhere on the window,
then you get a ClickAt command
*/
sideex.recorder.stop();//stop recording
console.log(sideex.file.command.get(0));//get the first recorded command
sideex.playback.start();//replay the recorded commands
import {SideeX} from "sideex-api"
var sideex = new SideeX();
sideex.recorder.start();//start recording
/*
Record a command
For example: click at anywhere on the window,
then you get a ClickAt command
*/
sideex.recorder.stop();//stop recording
console.log(sideex.file.command.get(0));//get the record that you recorded
let jsonString = sideex.file.testSuite.save();//serialize the recorded commands to a JSON string
//save the jsonString on your own
sideex.file.testSuite.load(jsonString);//load the jsonString
sideex.playback.start();//replay the recorded commands
import {SideeX} from "sideex-api"
var sideex = new SideeX();
sideex.recorder.start();//start recording
/*
Record a command
For example: click at anywhere on the window,
then you get a ClickAt command
*/
sideex.recorder.stop();//stop recording
console.log(sideex.file.command.get(0));//get the first recorded command
let command = sideex.file.command.get(0);
command.name = "myAction";//rename the command name to "myAction"
console.log(sideex.file.command.get(0));//see the change of the command name
//add a user-defined function for executing "myAction"
sideex.playback.addCustomCommand("myAction", true, (target, value) => {
console.log(target, value);
//define the action here
}
);
sideex.playback.start();//replay the modified recorded commands