@types/selenium-webdriver
Advanced tools
Comparing version 2.53.46 to 2.53.47
@@ -19,3 +19,7 @@ import * as webdriver from './index'; | ||
*/ | ||
constructor(opt_config?: Options | webdriver.Capabilities, opt_service?: remote.DriverService, opt_flow?: webdriver.promise.ControlFlow); | ||
constructor( | ||
opt_config?: Options | webdriver.Capabilities, | ||
opt_service?: remote.DriverService, | ||
opt_flow?: webdriver.promise.ControlFlow, | ||
); | ||
} | ||
@@ -58,3 +62,2 @@ | ||
/** | ||
@@ -70,3 +73,2 @@ * Add additional command line arguments to use when launching the Chrome | ||
/** | ||
@@ -81,3 +83,2 @@ * List of Chrome command line switches to exclude that ChromeDriver by default | ||
/** | ||
@@ -93,3 +94,2 @@ * Add additional extensions to install when launching Chrome. Each extension | ||
/** | ||
@@ -108,3 +108,2 @@ * Sets the path to the Chrome binary to use. On Mac OS X, this path should | ||
/** | ||
@@ -120,3 +119,2 @@ * Sets whether to leave the started Chrome browser running if the controlling | ||
/** | ||
@@ -130,3 +128,2 @@ * Sets the user preferences for Chrome's user profile. See the 'Preferences' | ||
/** | ||
@@ -165,3 +162,2 @@ * Sets the logging preferences for the new session. | ||
/** | ||
@@ -175,3 +171,2 @@ * Sets preferences for the 'Local State' file in Chrome's user data | ||
/** | ||
@@ -187,3 +182,2 @@ * Sets the name of the activity hosting a Chrome-based Android WebView. This | ||
/** | ||
@@ -199,3 +193,2 @@ * Sets the device serial number to connect to via ADB. If not specified, the | ||
/** | ||
@@ -209,3 +202,2 @@ * Configures the ChromeDriver to launch Chrome on Android via adb. This | ||
/** | ||
@@ -220,3 +212,2 @@ * Sets the package name of the Chrome or WebView app. | ||
/** | ||
@@ -232,3 +223,2 @@ * Sets the process name of the Activity hosting the WebView (as given by `ps`). | ||
/** | ||
@@ -244,3 +234,2 @@ * Sets whether to connect to an already-running instead of the specified | ||
/** | ||
@@ -254,12 +243,10 @@ * Sets the path to Chrome's log file. This path should exist on the machine | ||
/** | ||
* Sets the directory to store Chrome minidumps in. This option is only | ||
* supported when ChromeDriver is running on Linux. | ||
* @param {string} path The directory path. | ||
* @return {!Options} A self reference. | ||
*/ | ||
* Sets the directory to store Chrome minidumps in. This option is only | ||
* supported when ChromeDriver is running on Linux. | ||
* @param {string} path The directory path. | ||
* @return {!Options} A self reference. | ||
*/ | ||
setChromeMinidumpPath(path: string): Options; | ||
/** | ||
@@ -310,3 +297,2 @@ * Configures Chrome to emulate a mobile device. For more information, refer | ||
/** | ||
@@ -344,3 +330,2 @@ * Converts this options instance to a {@link webdriver.Capabilities} object. | ||
/** | ||
@@ -356,3 +341,2 @@ * Sets which port adb is listening to. _The ChromeDriver will connect to adb | ||
/** | ||
@@ -366,3 +350,2 @@ * Sets the path of the log file the driver should log to. If a log file is | ||
/** | ||
@@ -374,3 +357,2 @@ * Enables verbose logging. | ||
/** | ||
@@ -384,3 +366,2 @@ * Sets the number of threads the driver should use to manage HTTP requests. | ||
/** | ||
@@ -394,3 +375,2 @@ * Sets the base path for WebDriver REST commands (e.g. '/wd/hub'). | ||
/** | ||
@@ -405,3 +385,2 @@ * Defines the stdio configuration for the driver service. See | ||
/** | ||
@@ -415,3 +394,2 @@ * Defines the environment to start the server under. This settings will be | ||
/** | ||
@@ -418,0 +396,0 @@ * Creates a new DriverService using this instance's current configuration. |
@@ -13,3 +13,7 @@ import * as webdriver from './index'; | ||
*/ | ||
constructor(opt_config?: webdriver.Capabilities | Options, opt_service?: remote.DriverService, opt_flow?: webdriver.promise.ControlFlow); | ||
constructor( | ||
opt_config?: webdriver.Capabilities | Options, | ||
opt_service?: remote.DriverService, | ||
opt_flow?: webdriver.promise.ControlFlow, | ||
); | ||
@@ -28,3 +32,2 @@ /** | ||
export class Options { | ||
/** | ||
@@ -31,0 +34,0 @@ * Extracts the MicrosoftEdgeDriver specific options from the given |
@@ -11,2 +11,6 @@ import * as webdriver from './index'; | ||
*/ | ||
export function createExecutor(url: string | webdriver.promise.Promise<string>, opt_agent?: string, opt_proxy?: string): webdriver.Executor; | ||
export function createExecutor( | ||
url: string | webdriver.promise.Promise<string>, | ||
opt_agent?: string, | ||
opt_proxy?: string, | ||
): webdriver.Executor; |
@@ -22,3 +22,2 @@ import * as webdriver from './index'; | ||
/** | ||
@@ -33,3 +32,2 @@ * Launches Firefox and eturns a promise that will be fulfilled when the process | ||
/** | ||
@@ -63,3 +61,2 @@ * Kills the managed Firefox process. | ||
/** | ||
@@ -75,3 +72,2 @@ * Sets a desired preference for this profile. | ||
/** | ||
@@ -87,3 +83,2 @@ * Returns the currently configured value of a profile preference. This does | ||
/** | ||
@@ -96,3 +91,2 @@ * @return {number} The port this profile is currently configured to use, or | ||
/** | ||
@@ -104,3 +98,2 @@ * Sets the port to use for the WebDriver extension loaded by this profile. | ||
/** | ||
@@ -112,3 +105,2 @@ * @return {boolean} Whether the FirefoxDriver is configured to automatically | ||
/** | ||
@@ -121,3 +113,2 @@ * Sets whether the FirefoxDriver should automatically accept untrusted SSL | ||
/** | ||
@@ -129,3 +120,2 @@ * Sets whether to assume untrusted certificates come from untrusted issuers. | ||
/** | ||
@@ -137,3 +127,2 @@ * @return {boolean} Whether to assume untrusted certs come from untrusted | ||
/** | ||
@@ -145,3 +134,2 @@ * Sets whether to use native events with this profile. | ||
/** | ||
@@ -153,3 +141,2 @@ * Returns whether native events are enabled in this profile. | ||
/** | ||
@@ -166,3 +153,2 @@ * Writes this profile to disk. | ||
/** | ||
@@ -169,0 +155,0 @@ * Encodes this profile as a zipped, base64 encoded directory. |
@@ -45,3 +45,2 @@ import * as webdriver from './index'; | ||
export function post(path: string): any; | ||
@@ -48,0 +47,0 @@ export function del(path: string): any; |
@@ -165,3 +165,7 @@ import * as webdriver from './index'; | ||
*/ | ||
constructor(opt_config?: webdriver.Capabilities | Options, opt_service?: remote.DriverService, opt_flow?: webdriver.promise.ControlFlow); | ||
constructor( | ||
opt_config?: webdriver.Capabilities | Options, | ||
opt_service?: remote.DriverService, | ||
opt_flow?: webdriver.promise.ControlFlow, | ||
); | ||
@@ -168,0 +172,0 @@ /** |
{ | ||
"name": "@types/selenium-webdriver", | ||
"version": "2.53.46", | ||
"version": "2.53.47", | ||
"description": "TypeScript definitions for Selenium WebDriverJS", | ||
@@ -33,4 +33,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-webdriver", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "6a7c9cc1e28ec17ada17299f14a1ba9f0d8d6c08faca9dddc484a896611d4861", | ||
"typeScriptVersion": "3.6" | ||
"typesPublisherContentHash": "5fefda1c850a30c87f6d30c55fb5f5db854e4f8f0d5d31c6b079bbbdd9f3c532", | ||
"typeScriptVersion": "3.9" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 06 Jul 2021 16:34:30 GMT | ||
* Last updated: Thu, 12 May 2022 18:01:35 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
@@ -9,3 +9,3 @@ import * as webdriver from './index'; | ||
*/ | ||
interface ServiceOptions { } | ||
interface ServiceOptions {} | ||
@@ -12,0 +12,0 @@ /** |
import * as webdriver from './index'; | ||
export class Server { } | ||
export class Server {} | ||
@@ -31,4 +31,3 @@ /** | ||
*/ | ||
export class CommandExecutor { | ||
} | ||
export class CommandExecutor {} | ||
@@ -89,3 +88,2 @@ /** | ||
constructor(opt_config?: Options | webdriver.Capabilities, opt_flow?: webdriver.promise.ControlFlow); | ||
} |
/** | ||
* Registers a new test suite. | ||
* @param name The suite name. | ||
* @param fn The suite function, or {@code undefined} to define a pending test suite. | ||
*/ | ||
* Registers a new test suite. | ||
* @param name The suite name. | ||
* @param fn The suite function, or {@code undefined} to define a pending test suite. | ||
*/ | ||
export function describe(name: string, fn: Function): void; | ||
@@ -7,0 +7,0 @@ |
Sorry, the diff of this file is too big to display
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
245447
5944
0