-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Added CSharp Example to Selenium Manager #1967
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
Merged
shbenzer
merged 30 commits into
SeleniumHQ:trunk
from
shbenzer:csharp-selenium-manager-example
May 3, 2025
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
7c9a259
Added CSharp Example to Selenium Manager
shbenzer a17a252
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer 30310c3
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer 8034061
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer c7ac6be
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer 52b4db4
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer 0afd142
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer fc29eff
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer 35250fd
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer e23d0f0
Update examples/dotnet/SeleniumDocs/SeleniumManager/UsageTest.cs
shbenzer 2635bc0
Updated with using pattern
shbenzer 428f4f7
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer cd1f9c3
Update UsageTest.cs
shbenzer d0487b9
Update UsageTest.cs
shbenzer c63857b
Update UsageTest.cs
shbenzer cf152bd
Update UsageTest.cs
shbenzer 3e7a906
Update UsageTest.cs
shbenzer c6c848e
Update examples/dotnet/SeleniumDocs/SeleniumManager/UsageTest.cs
shbenzer b801adf
Update examples/dotnet/SeleniumDocs/SeleniumManager/UsageTest.cs
shbenzer e29b748
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer bed6293
testmethod
shbenzer 2943331
removed unused imports
shbenzer b5e091f
Update examples/dotnet/SeleniumDocs/SeleniumManager/UsageTest.cs
shbenzer be39490
Update lines english
shbenzer 9526a53
Update line ja
shbenzer 3fddb34
Update lines pt-br
shbenzer 54b17ba
Update lines zh-cn
shbenzer 668901b
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer f425ecd
Update examples/dotnet/SeleniumDocs/SeleniumManager/UsageTest.cs
shbenzer 6201d20
Merge branch 'trunk' into csharp-selenium-manager-example
shbenzer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using OpenQA.Selenium.Chrome; | ||
|
||
namespace SeleniumDocs.SeleniumManagerTest | ||
{ | ||
[TestClass] | ||
public class UsageTest | ||
{ | ||
[TestMethod] | ||
public void TestWithSeleniumManager() | ||
shbenzer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
// Before | ||
// using var driver = new ChromeDriver("path/to/chromedriver"); | ||
|
||
// Now | ||
using var driver = new ChromeDriver(); | ||
driver.Navigate().GoToUrl("https://www.selenium.dev/documentation/selenium_manager/"); | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.