Skip to content

Commit

Permalink
Bidi: Add URL to responses
Browse files Browse the repository at this point in the history
  • Loading branch information
kblok committed Nov 6, 2024
1 parent e52b5e8 commit 467338f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,21 +180,6 @@
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[navigation.spec] *should work with self requesting page*",
"platforms": [
"darwin",
"linux",
"win32"
],
"parameters": [
"webDriverBiDi"
],
"expectations": [
"FAIL"
]
},
{
"comment": "This is part of organizing the webdriver bidi implementation, We will remove it one by one",
"testIdPattern": "[navigation.spec] *should work when reload causes history API in beforeunload*",
Expand Down
1 change: 1 addition & 0 deletions lib/PuppeteerSharp/Bidi/BidiHttpResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ private BidiHttpResponse(WebDriverBiDi.Network.ResponseData data, BidiHttpReques
_data = data;
_request = request;
Status = (HttpStatusCode)data.Status;
Url = data.Url;
}

/// <inheritdoc />
Expand Down

0 comments on commit 467338f

Please sign in to comment.