Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 429 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 429 Bytes

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.'