-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Blazor] Update selenium versions #50511
Conversation
Hey @dotnet/aspnet-build, looks like this PR is something you want to take a look at. |
@@ -85,7 +85,7 @@ public static async Task<SeleniumStandaloneServer> GetInstanceAsync(ITestOutputH | |||
private static async Task InitializeInstance(ITestOutputHelper output) | |||
{ | |||
var port = FindAvailablePort(); | |||
var uri = new UriBuilder("http", SeleniumHost, port, "/wd/hub").Uri; | |||
var uri = new UriBuilder("http", SeleniumHost, port).Uri; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This URI no longer exists in Selenium 4.12.0
@@ -1,7 +1,8 @@ | |||
{ | |||
"version": "4.12.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uses Selenium 4.12.0, the default version is 4.9.0
8d604a8
to
84cc15e
Compare
Nice |
@mkArtakMSFT can you squash and merge this? |
"devDependencies": { | ||
"sauce-connect-launcher": "^1.3.1", | ||
"selenium-standalone": "^9.1.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean https://github.com/dotnet/aspnetcore-internal/blob/main/docs/operations/selenium_update.md should be updated?
This reverts commit 2772a78.
* Support resolving IFormFile in complex form mapping * Feedback * Fix up FormFile integration in Blazor * Fix up FileConverter interfaces * Fix build * Fix FormFileCollection initialization * Revert "Revert "[Blazor] Update selenium versions (#50511)" (#50556)" This reverts commit 564a94d. * Update test for non-enhanced form * Revert "Revert "Revert "[Blazor] Update selenium versions (#50511)" (#50556)"" This reverts commit 78bf7d8. * Add support for IReadOnlyList<IBrowserFile>
This PR updates our selenium infrastructure to one that is compatible with the new chrome for testing feature.