@wdio/protocols
Advanced tools
Comparing version 7.11.0 to 7.12.0
import { Protocol } from './types'; | ||
import AppiumCommands from './commands/appium'; | ||
import ChromiumCommands from './commands/chromium'; | ||
import GeckoCommands from './commands/gecko'; | ||
import JSONWPCommands from './commands/jsonwp'; | ||
@@ -14,2 +15,3 @@ import MJSONWPCommands from './commands/mjsonwp'; | ||
declare const ChromiumProtocol: Protocol; | ||
declare const GeckoProtocol: Protocol; | ||
declare const SauceLabsProtocol: Protocol; | ||
@@ -26,2 +28,5 @@ declare const SeleniumProtocol: Protocol; | ||
}; | ||
declare type GeckoCommandsAsync = { | ||
[K in keyof GeckoCommands]: (...args: Parameters<GeckoCommands[K]>) => Promise<ReturnType<GeckoCommands[K]>>; | ||
}; | ||
declare type JSONWPCommandsAsync = { | ||
@@ -44,3 +49,3 @@ [K in keyof JSONWPCommands]: (...args: Parameters<JSONWPCommands[K]>) => Promise<ReturnType<JSONWPCommands[K]>>; | ||
export * from './types'; | ||
export { WebDriverProtocol, MJsonWProtocol, JsonWProtocol, AppiumProtocol, ChromiumProtocol, SauceLabsProtocol, SeleniumProtocol, AppiumCommands, ChromiumCommands, JSONWPCommands, MJSONWPCommands, SauceLabsCommands, SeleniumCommands, WebDriverCommands, WebDriverCommandsAsync, AppiumCommandsAsync, ChromiumCommandsAsync, JSONWPCommandsAsync, MJSONWPCommandsAsync, SauceLabsCommandsAsync, SeleniumCommandsAsync }; | ||
export { WebDriverProtocol, MJsonWProtocol, JsonWProtocol, AppiumProtocol, ChromiumProtocol, SauceLabsProtocol, SeleniumProtocol, GeckoProtocol, AppiumCommands, ChromiumCommands, JSONWPCommands, MJSONWPCommands, SauceLabsCommands, SeleniumCommands, WebDriverCommands, GeckoCommands, WebDriverCommandsAsync, AppiumCommandsAsync, ChromiumCommandsAsync, JSONWPCommandsAsync, MJSONWPCommandsAsync, SauceLabsCommandsAsync, SeleniumCommandsAsync, GeckoCommandsAsync }; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -13,3 +13,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SeleniumProtocol = exports.SauceLabsProtocol = exports.ChromiumProtocol = exports.AppiumProtocol = exports.JsonWProtocol = exports.MJsonWProtocol = exports.WebDriverProtocol = void 0; | ||
exports.GeckoProtocol = exports.SeleniumProtocol = exports.SauceLabsProtocol = exports.ChromiumProtocol = exports.AppiumProtocol = exports.JsonWProtocol = exports.MJsonWProtocol = exports.WebDriverProtocol = void 0; | ||
const WebDriverProtocol = require('../protocols/webdriver.json'); | ||
@@ -25,2 +25,4 @@ exports.WebDriverProtocol = WebDriverProtocol; | ||
exports.ChromiumProtocol = ChromiumProtocol; | ||
const GeckoProtocol = require('../protocols/gecko.json'); | ||
exports.GeckoProtocol = GeckoProtocol; | ||
const SauceLabsProtocol = require('../protocols/saucelabs.json'); | ||
@@ -27,0 +29,0 @@ exports.SauceLabsProtocol = SauceLabsProtocol; |
{ | ||
"name": "@wdio/protocols", | ||
"version": "7.11.0", | ||
"version": "7.12.0", | ||
"description": "Utility package providing information about automation protocols", | ||
@@ -27,3 +27,3 @@ "author": "Christian Bromann <christian@saucelabs.com>", | ||
}, | ||
"gitHead": "e4f835ded2d426b22636872552d36e16c941977f" | ||
"gitHead": "c13eb971503eca5d59b74d38678cec3bd34018b4" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
329962
43
7953