@types/selenium-webdriver
Advanced tools
Comparing version 4.0.14 to 4.0.15
@@ -29,7 +29,7 @@ import * as http from './http'; | ||
args: string[]; | ||
binary?: string; | ||
binary?: string | undefined; | ||
detach: boolean; | ||
extensions: string[]; | ||
localState?: any; | ||
logFile?: string; | ||
logFile?: string | undefined; | ||
prefs?: any; | ||
@@ -39,7 +39,7 @@ } | ||
export interface IPerfLoggingPrefs { | ||
enableNetwork?: boolean; | ||
enablePage?: boolean; | ||
enableTimeline?: boolean; | ||
traceCategories?: string; | ||
bufferUsageReportingInterval?: number; | ||
enableNetwork?: boolean | undefined; | ||
enablePage?: boolean | undefined; | ||
enableTimeline?: boolean | undefined; | ||
traceCategories?: string | undefined; | ||
bufferUsageReportingInterval?: number | undefined; | ||
} | ||
@@ -46,0 +46,0 @@ |
@@ -27,7 +27,7 @@ import * as webdriver from './index'; | ||
args: string[]; | ||
binary?: string; | ||
binary?: string | undefined; | ||
detach: boolean; | ||
extensions: string[]; | ||
localState?: any; | ||
logFile?: string; | ||
logFile?: string | undefined; | ||
prefs?: any; | ||
@@ -37,7 +37,7 @@ } | ||
export interface IPerfLoggingPrefs { | ||
enableNetwork?: boolean; | ||
enablePage?: boolean; | ||
enableTimeline?: boolean; | ||
traceCategories?: string; | ||
bufferUsageReportingInterval?: number; | ||
enableNetwork?: boolean | undefined; | ||
enablePage?: boolean | undefined; | ||
enableTimeline?: boolean | undefined; | ||
traceCategories?: string | undefined; | ||
bufferUsageReportingInterval?: number | undefined; | ||
} | ||
@@ -44,0 +44,0 @@ |
@@ -383,3 +383,3 @@ import Symbols from './symbols'; | ||
*/ | ||
script?: number; | ||
script?: number | undefined; | ||
@@ -390,3 +390,3 @@ /** | ||
*/ | ||
pageLoad?: number; | ||
pageLoad?: number | undefined; | ||
@@ -398,3 +398,3 @@ /** | ||
*/ | ||
implicit?: number; | ||
implicit?: number | undefined; | ||
} |
@@ -268,3 +268,3 @@ import { ILocation, WebDriver, WebElement } from '../'; | ||
*/ | ||
dragAndDrop(from: WebElement, to?: WebElement|{x?: number | string, y?: number|string}|null): | ||
dragAndDrop(from: WebElement, to?: WebElement|{x?: number | string | undefined, y?: number|string | undefined}|null): | ||
Actions; | ||
@@ -271,0 +271,0 @@ |
{ | ||
"name": "@types/selenium-webdriver", | ||
"version": "4.0.14", | ||
"version": "4.0.15", | ||
"description": "TypeScript definitions for Selenium WebDriverJS", | ||
@@ -63,4 +63,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-webdriver", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "f1e202c9ba88aa3bffb0c79d16d007a4ac717864aca232d7e2c1597388ade65e", | ||
"typesPublisherContentHash": "d93bff6848f5e9b414c4e9605180e18df8dee12c91ec5dda3f144f9161e2e17b", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 18 Jun 2021 06:31:22 GMT | ||
* Last updated: Tue, 06 Jul 2021 16:34:30 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
@@ -174,23 +174,23 @@ import * as webdriver from './index'; | ||
/** Whether the server should only be accessed on this host's loopback address.*/ | ||
loopback?: boolean; | ||
loopback?: boolean | undefined; | ||
/** The port to start the server on (must be > 0). If the port is provided | ||
as a promise, the service will wait for the promise to resolve before starting. */ | ||
port?: number|Promise<number>; | ||
port?: number|Promise<number> | undefined; | ||
/** The arguments to pass to the service. If a promise is provided, the | ||
service will wait for it to resolve before starting. */ | ||
args?: string[]|Promise<string[]>; | ||
args?: string[]|Promise<string[]> | undefined; | ||
/** The arguments to pass to the JVM. If a promise is provided, the service | ||
will wait for it to resolve before starting. */ | ||
jvmArgs?: string[]|Promise<string[]>; | ||
jvmArgs?: string[]|Promise<string[]> | undefined; | ||
/** The environment variables that should be visible to the server process. | ||
Defaults to inheriting the current process's environment.*/ | ||
env?: {[key: string]: string}; | ||
env?: {[key: string]: string} | undefined; | ||
/** IO configuration for the spawned server process. For more information, | ||
refer to the documentation of `child_process.spawn`*/ | ||
stdio?: string|Array<string|number>; | ||
stdio?: string|Array<string|number> | undefined; | ||
} | ||
@@ -197,0 +197,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
210500