-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
added csharp code for navigation command #1696
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
Conversation
👷 Deploy request for selenium-dev pending review.Visit the deploys page to approve it
|
PR Description updated to latest commit (40acb57)
|
PR Review
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
done, please check. |
* added csharp code for navigation command * updated csharp code fix * modified package name --------- Co-authored-by: Sri Harsha <[email protected]>
User description
Thanks for contributing to the Selenium site and documentation!
A PR well described will help maintainers to review and merge it quickly
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, and help reviewers by making them as simple and short as possible.
Description
added csharp commands for navigation
Motivation and Context
added csharp code for navigation
Types of changes
Checklist
Type
enhancement, documentation
Description
NavigationTest
in the SeleniumDocs project, including methods to test basic navigation commands.GoToUrl
,Back
,Forward
, andRefresh
with assertions to check the page title.Changes walkthrough
NavigationTest.cs
Add C# Selenium navigation commands with tests
examples/dotnet/SeleniumDocs/Interactions/NavigationTest.cs
NavigationTest
with methods to test navigationcommands.
GoToUrl
,Back
,Forward
, andRefresh
.the correct page is loaded.
ChromeDriver
within the test method.navigation.en.md
Update English navigation documentation with new CSharp examples
website_and_docs/content/documentation/webdriver/interactions/navigation.en.md
new test methods.
navigation.ja.md
Update Japanese navigation documentation with new CSharp examples
website_and_docs/content/documentation/webdriver/interactions/navigation.ja.md
new test methods.
navigation.pt-br.md
Update Portuguese navigation documentation with new CSharp examples
website_and_docs/content/documentation/webdriver/interactions/navigation.pt-br.md
new test methods.
navigation.zh-cn.md
Update Chinese navigation documentation with new CSharp examples
website_and_docs/content/documentation/webdriver/interactions/navigation.zh-cn.md
new test methods.