Skip to content
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

[.net] Add example for logging to console #2172

Open
wants to merge 2 commits into
base: trunk
Choose a base branch
from

Conversation

RenderMichael
Copy link
Contributor

@RenderMichael RenderMichael commented Feb 16, 2025

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

Motivation and Context

Types of changes

  • Change to the site (I have double-checked the Netlify deployment, and my changes look good)
  • Code example added (and I also added the example to all translated languages)
  • Improved translation
  • Added new translation (and I also added a notice to each document missing translation)

Checklist

  • I have read the contributing document.
  • I have used hugo to render the site/docs locally and I am sure it works.

PR Type

Enhancement, Documentation


Description

  • Added examples for logging browser actions to console in .NET tests.

  • Updated documentation references to include new logging examples.

  • Introduced PrintOutputToConsole test methods for Chrome, Edge, and Internet Explorer.

  • Adjusted code block references in multilingual documentation to reflect new examples.


Changes walkthrough 📝

Relevant files
Enhancement
3 files
ChromeTest.cs
Added console logging example for Chrome browser tests     
+22/-0   
EdgeTest.cs
Added console logging example for Edge browser tests         
+22/-0   
InternetExplorerTest.cs
Added console logging example for Internet Explorer browser tests
+20/-0   
Documentation
10 files
chrome.en.md
Updated English documentation for Chrome logging examples
+8/-8     
chrome.ja.md
Updated Japanese documentation for Chrome logging examples
+8/-8     
chrome.pt-br.md
Updated Portuguese documentation for Chrome logging examples
+8/-8     
chrome.zh-cn.md
Updated Chinese documentation for Chrome logging examples
+8/-8     
edge.en.md
Updated English documentation for Edge logging examples   
+6/-6     
edge.pt-br.md
Updated Portuguese documentation for Edge logging examples
+6/-6     
internet_explorer.en.md
Updated English documentation for Internet Explorer logging examples
+5/-5     
internet_explorer.ja.md
Updated Japanese documentation for Internet Explorer logging examples
+5/-5     
internet_explorer.pt-br.md
Updated Portuguese documentation for Internet Explorer logging
examples
+5/-5     
internet_explorer.zh-cn.md
Updated Chinese documentation for Internet Explorer logging examples
+5/-5     

Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • Copy link

    netlify bot commented Feb 16, 2025

    👷 Deploy request for selenium-dev pending review.

    Visit the deploys page to approve it

    Name Link
    🔨 Latest commit e9c5eb8

    Copy link
    Contributor

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 PR contains tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Resource Cleanup

    The StringWriter and Console.Error redirection should be wrapped in a try-finally block to ensure proper cleanup even if an exception occurs during the test.

    var stringWriter = new StringWriter();
    var originalOutput = Console.Error;
    Console.SetError(stringWriter);
    
    driver = new ChromeDriver();
    
    using (var ctx = Log.CreateContext(LogEventLevel.Debug).Handlers.Add(new ConsoleLogHandler()))
    {
        // logs will be emitted to STDERR
        driver.Url = "https://www.selenium.dev/selenium/web/blank.html";
    }
    
    Assert.IsTrue(stringWriter.ToString().Contains("get {\"url\":\"https://www.selenium.dev/selenium/web/blank.html\"}"));
    Console.SetError(originalOutput);
    stringWriter.Dispose();

    @@ -29,7 +29,7 @@ Starting a Chrome session with basic defined options looks like this:
    {{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L9-L10" >}}
    {{% /tab %}}
    {{< tab header="CSharp" >}}
    {{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L30-L31" >}}
    {{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L31-L32" >}}
    Copy link
    Contributor Author

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Due to the additional using statement, each of these got shifted down one line

    Copy link
    Contributor

    qodo-merge-pro bot commented Feb 16, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    Ensure proper resource cleanup
    Suggestion Impact:The commit implements resource cleanup but uses try-finally instead of using block

    code diff:

    +            try
    +            {
    +                using (var ctx = Log.CreateContext(LogEventLevel.Debug).Handlers.Add(new ConsoleLogHandler()))
    +                {
    +                    // logs will be emitted to STDERR
    +                    _driver = new InternetExplorerDriver();
    +                }
     
    -            using (var ctx = Log.CreateContext(LogEventLevel.Debug).Handlers.Add(new ConsoleLogHandler()))
    +                Assert.IsTrue(stringWriter.ToString().Contains("Executing command: []: newSession"));
    +            }
    +            finally
                 {
    -                // logs will be emitted to STDERR
    -                _driver = new InternetExplorerDriver();
    +                Console.SetError(originalOutput);
    +                stringWriter.Dispose();
                 }

    The StringWriter should be disposed within a using block to ensure proper
    resource cleanup, even if an exception occurs during the test.

    examples/dotnet/SeleniumDocs/Browsers/InternetExplorerTest.cs [135-147]

    -var stringWriter = new StringWriter();
    -var originalOutput = Console.Error;
    -Console.SetError(stringWriter);
    +using (var stringWriter = new StringWriter())
    +{
    +    var originalOutput = Console.Error;
    +    Console.SetError(stringWriter);
     
    -using (var ctx = Log.CreateContext(LogEventLevel.Debug).Handlers.Add(new ConsoleLogHandler()))
    -{
    -    // logs will be emitted to STDERR
    -    _driver = new InternetExplorerDriver();
    +    using (var ctx = Log.CreateContext(LogEventLevel.Debug).Handlers.Add(new ConsoleLogHandler()))
    +    {
    +        // logs will be emitted to STDERR
    +        _driver = new InternetExplorerDriver();
    +    }
    +
    +    Assert.IsTrue(stringWriter.ToString().Contains("Executing command: []: newSession"));
    +    Console.SetError(originalOutput);
     }
     
    -Assert.IsTrue(stringWriter.ToString().Contains("Executing command: []: newSession"));
    -Console.SetError(originalOutput);
    -stringWriter.Dispose();
    -

    [Suggestion has been applied]

    Suggestion importance[1-10]: 7

    __

    Why: Using a 'using' block for StringWriter ensures proper resource disposal even in case of exceptions, which is a significant improvement for resource management and code reliability.

    Medium

    @RenderMichael
    Copy link
    Contributor Author

    The other code examples seem to refer to having the DriverService perform the desired operation (logging to console, logging to file, etc).

    Let me know if this is the right mechanism to advertise to users and @nvborisenko if this is the right thing for users to do here

    @nvborisenko
    Copy link
    Member

    @RenderMichael No, it is incorrect.

    Current behavior: when we start geckodriver.exe it outputs messages into user's console (STDOUT?). Depending on log level, nothing common with our internal logging mechanism. Some users don't like that using selenium library implicitly puts something to their console application (I remember at least 2 issues, please search it). Personally I also don't like it. There is only one workaround: configure log level to see nothing in console, or configure geckodriver.exe to put logs into file. No more ways.

    Now, when we have internal logging, it might be beneficial to catch all messages from geckodriver.exe and route it to our internal logging. So user will not see strange messages in his console, only if he explicitly says he wants it.

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    2 participants