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

[dotnet] Simplify PopupWindowFinder.Invoke #15549

Merged
merged 1 commit into from
Apr 2, 2025

Conversation

RenderMichael
Copy link
Contributor

@RenderMichael RenderMichael commented Apr 2, 2025

User description

Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it

Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.

Motivation and Context

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist

  • I have read the contributing document.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

PR Type

Enhancement


Description

  • Simplified the PopupWindowFinder.Invoke method logic.

  • Removed redundant GetDifference helper method.

  • Improved readability and reduced code complexity.


Changes walkthrough 📝

Relevant files
Enhancement
PopupWindowFinder.cs
Simplified popup handle detection logic.                                 

dotnet/src/support/UI/PopupWindowFinder.cs

  • Replaced custom difference logic with LINQ Except method.
  • Removed the GetDifference helper method.
  • Simplified the Invoke method by directly using LINQ for handle
    comparison.
  • +3/-26   

    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
    Contributor

    qodo-merge-pro bot commented Apr 2, 2025

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

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

    Missing Wait Function

    The lambda expression for the wait.Until method is incomplete. The code defines a lambda but doesn't specify what function it should perform. The return statement is inside the lambda but not connected to the wait.Until call.

    string popupHandle = wait.Until(driver =>
    {
        ReadOnlyCollection<string> newHandles = driver.WindowHandles;
        return newHandles.Except(existingHandles, StringComparer.Ordinal).FirstOrDefault();
    });

    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 2, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    Handle potential null return

    The FirstOrDefault() method can return null when no new handles are found, but
    the method signature expects a non-nullable string. Add null handling to avoid
    potential NullReferenceException.

    dotnet/src/support/UI/PopupWindowFinder.cs [137]

    -return newHandles.Except(existingHandles, StringComparer.Ordinal).FirstOrDefault();
    +var newHandle = newHandles.Except(existingHandles, StringComparer.Ordinal).FirstOrDefault();
    +return newHandle ?? string.Empty;
    • Apply this suggestion
    Suggestion importance[1-10]: 8

    __

    Why: The suggestion correctly identifies a potential null reference issue. Since FirstOrDefault() can return null when no new handles are found, but the method returns a non-nullable string, adding null handling prevents a potential NullReferenceException in consuming code.

    Medium
    • More

    @RenderMichael RenderMichael merged commit b9d91b4 into SeleniumHQ:trunk Apr 2, 2025
    11 of 12 checks passed
    @RenderMichael RenderMichael deleted the popup-finder branch April 2, 2025 04:50
    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.

    1 participant