Skip to content

Commit 9f70f21

Browse files
committed
chore: avoid typed StorageState
This port should treat it as an opaque json object.
1 parent 390f50e commit 9f70f21

File tree

5 files changed

+4
-59
lines changed

5 files changed

+4
-59
lines changed

src/Playwright/Core/APIRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async Task<IAPIRequestContext> IAPIRequest.NewContextAsync(APIRequestNewContextO
6464
}
6565
if (!string.IsNullOrEmpty(storageState))
6666
{
67-
args.Add("storageState", JsonSerializer.Deserialize<StorageState>(storageState, Helpers.JsonExtensions.DefaultJsonSerializerOptions));
67+
args.Add("storageState", JsonSerializer.Deserialize<object>(storageState, Helpers.JsonExtensions.DefaultJsonSerializerOptions));
6868
}
6969

7070
var context = await _playwright.SendMessageToServerAsync<APIRequestContext>(

src/Playwright/Core/APIRequestContext.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ private APIRequestContextOptions WithMethod(APIRequestContextOptions options, st
215215
public async Task<string> StorageStateAsync(APIRequestContextStorageStateOptions options = null)
216216
{
217217
string state = JsonSerializer.Serialize(
218-
await SendMessageToServerAsync<StorageState>("storageState").ConfigureAwait(false),
218+
await SendMessageToServerAsync<object>("storageState").ConfigureAwait(false),
219219
JsonExtensions.DefaultJsonSerializerOptions);
220220

221221
if (!string.IsNullOrEmpty(options?.Path))

src/Playwright/Core/Browser.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public async Task<IBrowserContext> NewContextAsync(BrowserNewContextOptions opti
155155

156156
if (!string.IsNullOrEmpty(storageState))
157157
{
158-
args.Add("storageState", JsonSerializer.Deserialize<StorageState>(storageState, Helpers.JsonExtensions.DefaultJsonSerializerOptions));
158+
args.Add("storageState", JsonSerializer.Deserialize<object>(storageState, Helpers.JsonExtensions.DefaultJsonSerializerOptions));
159159
}
160160

161161
if (options.ViewportSize?.Width == -1)

src/Playwright/Core/BrowserContext.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ public Task SetOfflineAsync(bool offline) => SendMessageToServerAsync(
539539
public async Task<string> StorageStateAsync(BrowserContextStorageStateOptions options = default)
540540
{
541541
string state = JsonSerializer.Serialize(
542-
await SendMessageToServerAsync<StorageState>("storageState").ConfigureAwait(false),
542+
await SendMessageToServerAsync<object>("storageState").ConfigureAwait(false),
543543
JsonExtensions.DefaultJsonSerializerOptions);
544544

545545
if (!string.IsNullOrEmpty(options?.Path))

src/Playwright/Core/StorageState.cs

-55
This file was deleted.

0 commit comments

Comments
 (0)