Revert "feat: add defaultTimeout browser context configuration option (#6944)" (#7057)

This reverts commit 617dfdef9e.

It turns out this might conflict with our bright testrunner future.
This commit is contained in:
Andrey Lushnikov 2021-06-10 18:38:56 -07:00 committed by GitHub
parent 617dfdef9e
commit f52290d4ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 0 additions and 51 deletions

View File

@ -469,11 +469,6 @@ contexts override the proxy, global proxy will be never used and can be any stri
`launch({ proxy: { server: 'http://per-context' } })`.
:::
## context-option-defaulttimeout
- `defaultTimeout` <[float]>
Set the default browser context timeout for the new context. Equivalent to calling [`method: BrowserContext.setDefaultTimeout`].
## select-options-values
* langs: java, js, csharp
- `values` <[null]|[string]|[ElementHandle]|[Array]<[string]>|[Object]|[Array]<[ElementHandle]>|[Array]<[Object]>>
@ -599,7 +594,6 @@ using the [`method: AndroidDevice.setDefaultTimeout`] method.
- %%-context-option-recordvideo-%%
- %%-context-option-recordvideo-dir-%%
- %%-context-option-recordvideo-size-%%
- %%-context-option-defaulttimeout-%%
## browser-option-args
- `args` <[Array]<[string]>>

View File

@ -339,7 +339,6 @@ export type BrowserTypeLaunchPersistentContextParams = {
omitContent?: boolean,
path: string,
},
defaultTimeout?: number,
userDataDir: string,
slowMo?: number,
};
@ -410,7 +409,6 @@ export type BrowserTypeLaunchPersistentContextOptions = {
omitContent?: boolean,
path: string,
},
defaultTimeout?: number,
slowMo?: number,
};
export type BrowserTypeLaunchPersistentContextResult = {
@ -501,7 +499,6 @@ export type BrowserNewContextParams = {
omitContent?: boolean,
path: string,
},
defaultTimeout?: number,
proxy?: {
server: string,
bypass?: string,
@ -559,7 +556,6 @@ export type BrowserNewContextOptions = {
omitContent?: boolean,
path: string,
},
defaultTimeout?: number,
proxy?: {
server: string,
bypass?: string,

View File

@ -322,7 +322,6 @@ ContextOptions:
properties:
omitContent: boolean?
path: string
defaultTimeout: number?
Playwright:

View File

@ -248,7 +248,6 @@ export function createScheme(tChannel: (name: string) => Validator): Scheme {
omitContent: tOptional(tBoolean),
path: tString,
})),
defaultTimeout: tOptional(tNumber),
userDataDir: tString,
slowMo: tOptional(tNumber),
});
@ -308,7 +307,6 @@ export function createScheme(tChannel: (name: string) => Validator): Scheme {
omitContent: tOptional(tBoolean),
path: tString,
})),
defaultTimeout: tOptional(tNumber),
proxy: tOptional(tObject({
server: tString,
bypass: tOptional(tString),

View File

@ -76,9 +76,6 @@ export abstract class BrowserContext extends SdkObject {
if (this._options.recordHar)
this._harTracer = new HarTracer(this, this._options.recordHar);
this.tracing = new Tracing(this);
if (typeof this._options.defaultTimeout === 'number' && !debugMode())
this._timeoutSettings.setDefaultTimeout(this._options.defaultTimeout);
}
_setSelectors(selectors: Selectors) {

View File

@ -252,7 +252,6 @@ export type BrowserContextOptions = {
},
proxy?: ProxySettings,
_debugName?: string,
defaultTimeout?: number,
};
export type EnvArray = { name: string, value: string }[];

View File

@ -218,16 +218,6 @@ it('should be able to navigate after disabling javascript', async ({browser, ser
await context.close();
});
it('should respect default timeout when configured', async ({browser, playwright}) => {
const context = await browser.newContext({ defaultTimeout: 5 });
const page = await context.newPage();
let error = null;
await page.waitForFunction('false').catch(e => error = e);
expect(error).toBeInstanceOf(playwright.errors.TimeoutError);
expect(error.message).toContain('page.waitForFunction: Timeout 5ms exceeded');
await context.close();
});
it('should work with offline option', async ({browser, server}) => {
const context = await browser.newContext({offline: true});
const page = await context.newPage();

24
types/types.d.ts vendored
View File

@ -6985,12 +6985,6 @@ export interface BrowserType<Unused = {}> {
*/
colorScheme?: "light"|"dark"|"no-preference";
/**
* Set the default browser context timeout for the new context. Equivalent to calling
* [browserContext.setDefaultTimeout(timeout)](https://playwright.dev/docs/api/class-browsercontext#browsercontextsetdefaulttimeouttimeout).
*/
defaultTimeout?: number;
/**
* Specify device scale factor (can be thought of as dpr). Defaults to `1`.
*/
@ -8102,12 +8096,6 @@ export interface AndroidDevice {
*/
command?: string;
/**
* Set the default browser context timeout for the new context. Equivalent to calling
* [browserContext.setDefaultTimeout(timeout)](https://playwright.dev/docs/api/class-browsercontext#browsercontextsetdefaulttimeouttimeout).
*/
defaultTimeout?: number;
/**
* Specify device scale factor (can be thought of as dpr). Defaults to `1`.
*/
@ -8862,12 +8850,6 @@ export interface Browser extends EventEmitter {
*/
colorScheme?: "light"|"dark"|"no-preference";
/**
* Set the default browser context timeout for the new context. Equivalent to calling
* [browserContext.setDefaultTimeout(timeout)](https://playwright.dev/docs/api/class-browsercontext#browsercontextsetdefaulttimeouttimeout).
*/
defaultTimeout?: number;
/**
* Specify device scale factor (can be thought of as dpr). Defaults to `1`.
*/
@ -10937,12 +10919,6 @@ export interface BrowserContextOptions {
*/
colorScheme?: "light"|"dark"|"no-preference";
/**
* Set the default browser context timeout for the new context. Equivalent to calling
* [browserContext.setDefaultTimeout(timeout)](https://playwright.dev/docs/api/class-browsercontext#browsercontextsetdefaulttimeouttimeout).
*/
defaultTimeout?: number;
/**
* Specify device scale factor (can be thought of as dpr). Defaults to `1`.
*/