chore: roll driver to 1.53.0-alpha-2025-05-21#3184
Conversation
| public async Task<string> InputValueAsync(ElementHandleInputValueOptions? options = null) | ||
| => (await SendMessageToServerAsync("inputValue", new Dictionary<string, object?>() | ||
| { | ||
| { "timeout", options?.Timeout }, |
There was a problem hiding this comment.
There is no timeout in the protocol for this method.
| { | ||
| ["selector"] = selector, | ||
| #pragma warning disable CS0612 // Type or member is obsolete | ||
| ["timeout"] = options?.Timeout, |
There was a problem hiding this comment.
There is no timeout in the protocol for this method.
| { | ||
| ["selector"] = selector, | ||
| #pragma warning disable CS0612 // Type or member is obsolete | ||
| ["timeout"] = options?.Timeout, |
There was a problem hiding this comment.
There is no timeout in the protocol for this method.
| ValidateCookies(await Context.CookiesAsync(null as string)); | ||
| ValidateCookies(await Context.CookiesAsync(null as string[])); | ||
| ValidateCookies(await Context.CookiesAsync([])); | ||
| // ValidateCookies(await Context.CookiesAsync([])); |
There was a problem hiding this comment.
This line does not compile for some reason. Needs investigation.
There was a problem hiding this comment.
Would be nice to find out why it regressed before we land.
| ["httpCredentials"] = options?.HttpCredentials, | ||
| ["maxRedirects"] = options?.MaxRedirects, | ||
| ["proxy"] = options?.Proxy, | ||
| ["timeout"] = options?.Timeout, |
There was a problem hiding this comment.
This property was removed from the protocol.
| return playwright.PreLaunchedBrowser; | ||
| } | ||
| var task = CreateBrowserAsync(); | ||
| var timeout = options?.Timeout != null ? (int)options.Timeout : 30_000; |
There was a problem hiding this comment.
Upstream defaults to zero timeout instead of 30_000, aligned above.
| /// Playwright script runs. | ||
| /// </para> | ||
| /// <para> | ||
| /// You probably want to <a href="https://playwright.dev/docs/api/class-testoptions#test-options-trace">enable |
| ValidateCookies(await Context.CookiesAsync(null as string)); | ||
| ValidateCookies(await Context.CookiesAsync(null as string[])); | ||
| ValidateCookies(await Context.CookiesAsync([])); | ||
| // ValidateCookies(await Context.CookiesAsync([])); |
There was a problem hiding this comment.
Would be nice to find out why it regressed before we land.
8f24f68 to
5a5089d
Compare
| { | ||
| public string Type { get; set; } | ||
| public string Title { get; set; } | ||
| public string ApiName { get; set; } |
There was a problem hiding this comment.
| public string ApiName { get; set; } |
Covers microsoft/playwright#35888, microsoft/playwright#35969 and microsoft/playwright#35988.
References #3149.