Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Latest commit

 

History

History

jsonwp-status

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

jsonwp-status

Library of status codes for the Selenium JSON Wire Protocol.

Usage

import { statusCodes } from 'appium-base-driver';

statusCodes.NoSuchContext;
// -> {code: 35, summary: 'No such context found'}
import { getSummaryByCode } from 'appium-base-driver';

getSummaryByCode(0);
// -> 'The command executed successfully.'