Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/testingbot/testingbot-tunnel-launcher
NodeJS module to launch and configure the TestingBot.com tunnel
https://github.com/testingbot/testingbot-tunnel-launcher
selenium selenium-webdriver testingbot webdriverio
Last synced: 4 months ago
JSON representation
NodeJS module to launch and configure the TestingBot.com tunnel
- Host: GitHub
- URL: https://github.com/testingbot/testingbot-tunnel-launcher
- Owner: testingbot
- License: mit
- Created: 2015-10-21T17:44:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-16T21:47:24.000Z (almost 2 years ago)
- Last Synced: 2024-09-27T01:52:00.936Z (4 months ago)
- Topics: selenium, selenium-webdriver, testingbot, webdriverio
- Language: JavaScript
- Size: 440 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# testingbot-tunnel-launcher
[![npm](https://img.shields.io/npm/v/testingbot-tunnel-launcher.svg?maxAge=2592000)](https://www.npmjs.com/package/testingbot-tunnel-launcher)
[![dependencies Status](https://david-dm.org/testingbot/testingbot-tunnel-launcher/status.svg)](https://david-dm.org/testingbot/testingbot-tunnel-launcher)
[![devDependencies Status](https://david-dm.org/testingbot/testingbot-tunnel-launcher/dev-status.svg)](https://david-dm.org/testingbot/testingbot-tunnel-launcher?type=dev)
[![Build Status](https://travis-ci.org/testingbot/testingbot-tunnel-launcher.svg?branch=master)](https://travis-ci.org/testingbot/testingbot-tunnel-launcher)A library to download and launch TestingBot Tunnel.
## Installation
```sh
npm install testingbot-tunnel-launcher
```## Usage
### Simple Usage
```javascript
var testingbotTunnel = require('testingbot-tunnel-launcher');testingbotTunnel({
apiKey: 'key',
apiSecret: 'secret',
verbose: true
}, function (err, tunnel) {
if (err) {
console.error(err.message);
return;
}
console.log("Tunnel ready");tunnel.close(function () {
console.log("Tunnel closed completely");
})
});
```### Advanced Usage
```javascript
var testingbotTunnel = require('testingbot-tunnel-launcher'),
options = {// The TestingBot API key which you can get for free, listed in our member area
apiKey: 'key',// The TestingBot API secret which you can get for free, listed in our member area
apiSecret: 'secret',// More verbose output from the tunnel
verbose: true,// Port on which the tunnel Selenium relay will listen for
// requests. Default 4445. (optional)
se-port: null,// Proxy host and port the tunnel can use to connect to an upstream proxy
// e.g. "localhost:1234" (optional)
proxy: null,// a comma-separated list of domains that
// will not go through the tunnel. (optional)
fast-fail-regexps: null,// Write logging output to this logfile (optional)
logfile: null,// Change the tunnel version - see versions on https://testingbot.com/support/other/tunnel
tunnelVersion: "1.19", // or 2.1 (Java 8)// Gives this tunnel a unique identifier
tunnelIdentifier: "myIdentifier"
};testingbotTunnel(options, function(err, tunnel) {
console.log("Started Tunnel");
tunnel.close(function () {
console.log("Closed tunnel");
});
});```
### Credentials
You can pass the TestingBot credentials as `apiKey` and `apiSecret` in the options.
You can also create a `~/.testingbot` file with `apiKey:apiSecret` as content
## Testing
```
npm test
```## Changelog
### v1.1.11
- Add support for `tunnelIdentifier`
- Improve parsing of arguments passed to the tunnel### v1.1.11
- Throw error when user does not have any minutes left### v1.1.9
- Add corrupt download check for tunnel binary### v1.1.8
- Update dependencies### v1.1.0
- Get rid of exit handlers, they're causing issues
- Add tests
- Update dependencies### v1.0.7
- Properly handle SIGINT, exit and uncaughtException### v1.0.6
- Small fixes
- Display new version/invalid credentials### v1.0.5
- Add `tunnelVersion` support to specify which version of the tunnel you want to use### v1.0.1 - v1.0.4
- Minor fixes### v1.0.0
- First release of testingbot-tunnel-launcher## MIT license
Copyright (c) TestingBot <[email protected]>