Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/Playwright/Core/Frame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,6 @@ internal class SelectOptionValueProtocol

[JsonPropertyName("index")]
public int? Index { get; set; }
#nullable disable

internal static SelectOptionValueProtocol From(SelectOptionValue value)
{
Expand All @@ -1054,16 +1053,16 @@ internal static SelectOptionValueProtocol From(SelectOptionValue value)

internal class FrameNavigatedEventArgs
{
public string Name { get; set; }
public string Name { get; set; } = null!;

public string Url { get; set; }
public string Url { get; set; } = null!;

public string Error { get; set; }
public string? Error { get; set; }

internal NavigateDocument NewDocument { get; set; }
internal NavigateDocument? NewDocument { get; set; }
}

internal class NavigateDocument
{
public Request Request { get; set; }
public Request? Request { get; set; }
}