This package has been deprecated

Author message:

This package has been migrated into the 'appium-base-driver' package

appium-jsonwp-proxy

1.5.0 • Public • Published

appium-jsonwp-proxy

NPM version Downloads Dependency Status devDependency Status

Build Status Coverage Status

Proxy middleware for the Selenium JSON Wire Protocol. Allows

Usage

The proxy is used by instantiating with the details of the Selenium server to which to proxy. The options for the constructor are passed as a hash with the following possible member:

  • scheme - defaults to 'http'
  • server - defaults to 'localhost'
  • port - defaults to 4444
  • base - defaults to '/wd/hub'
  • sessionId - the session id of the session on the remote server

Once the proxy is created, there are two async methods:

command (url, method, body)

Sends a "command" to the proxied server, using the "url", which is the endpoing, with the HTTP method and optional body.

import JWProxy from 'appium-jsonwp-proxy';
 
let host = 'my.host.com';
let port = 4445;
 
let proxy = new JWProxy({server: host, port: port});
 
// get the Selenium server status
let seStatus = await proxy.command('/status', 'GET');

proxyReqRes (req, res)

Proxies a request and response to the proxied server. Used to handle the entire conversation of a request/response cycle.

import JWProxy from 'appium-jsonwp-proxy';
import http from 'http';
 
let host = 'my.host.com';
let port = 4445;
 
let proxy = new JWProxy({server: host, port: port});
 
 
http.createServer(function (req, res) {
  await proxy.proxyReqRes(res, res);
}).listen(9615);

Readme

Keywords

Package Sidebar

Install

npm i appium-jsonwp-proxy

Weekly Downloads

65

Version

1.5.0

License

Apache-2.0

Last publish

Collaborators

  • jlipps
  • nick.mokhnach
  • kazucocoa
  • boneskull
  • imurchie
  • bootstraponline
  • dangraham