@appium/base-driver
Version:
Base driver class for Appium drivers
34 lines (31 loc) • 730 B
JavaScript
const SUBSCRIPTION_REQUEST_PARAMS = /** @type {const} */ ({
required: ['events'],
optional: ['contexts'],
});
export const BIDI_COMMANDS = /** @type {const} */ ({
session: {
subscribe: {
command: 'bidiSubscribe',
params: SUBSCRIPTION_REQUEST_PARAMS,
},
unsubscribe: {
command: 'bidiUnsubscribe',
params: SUBSCRIPTION_REQUEST_PARAMS,
},
status: {
command: 'bidiStatus',
params: {},
}
},
browsingContext: {
navigate: {
command: 'bidiNavigate',
params: {
required: ['context', 'url'],
optional: ['wait'],
},
},
},
});
// TODO add definitions for all bidi commands.
// spec link: https://w3c.github.io/webdriver-bidi/