Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Calvarro Nelson <jacalvar@microsoft.com>2021-02-11 22:05:10 +0300
committerGitHub <noreply@github.com>2021-02-11 22:05:10 +0300
commit9829e88a1c9fe6118444e022269e01c3bef91cd2 (patch)
tree685bf37bc7ebd36996d43807fed92fc03e48dd1c /.config
parentc5c8f4385ee8e5721ff85699ff04d364d67142f8 (diff)
[Blazor][Templates] Replaces selenium with playwright for our E2E Tests (#29873)
* [Blazor][Templates] Replaces selenium with playwright for our E2E Tests * Supports multiple browsers. * Supports multiple OS. * Individual configuration per browser via configuration files. * Separate configuration for CI environments. * Separate configuration per Operating System. * Separate configuration for debugging. * Removes the requirement to have a browser installed. * Removes the requirement to have JAVA installed. * Removes the requirement to have nodejs installed. * Records detailed information on each test run * Network traces from the browser. * Video of the test execution in the browser. * Browser logs. * Network errors on the browser. * Page errors on the browser.
Diffstat (limited to '.config')
-rw-r--r--.config/dotnet-tools.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index 141eb757a8..c6054f7076 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -13,6 +13,12 @@
"commands": [
"dotnet-format"
]
+ },
+ "playwright-sharp-tool": {
+ "version": "0.170.2",
+ "commands": [
+ "playwright-sharp"
+ ]
}
}
}