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

Fixed argument type in switchToIFrame() to be integer. #863

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

AlexSkrypnyk
Copy link

Release 1.11.0 introduced strict types.

With that, the switchToIFrame(string? $id) method started to fail on consumer projects using w3c = true because the expected $id argument has a type string instead of expected int.

According to https://www.w3.org/TR/webdriver/#switch-to-frame, the $id is expected to be an integer.

This PR updates string? with int?.

Note that downstream project MinkSelenium2Driver have the same issue propagated after the recent release 1.7.0: https://github.com/minkphp/MinkSelenium2Driver/blob/master/src/Selenium2Driver.php#L431

Copy link

codecov bot commented Dec 17, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (d8527fd) 98.72% compared to head (95f5a97) 98.72%.

Additional details and impacted files
@@            Coverage Diff            @@
##             master     #863   +/-   ##
=========================================
  Coverage     98.72%   98.72%           
  Complexity      374      374           
=========================================
  Files            24       24           
  Lines          1022     1022           
=========================================
  Hits           1009     1009           
  Misses           13       13           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

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

Successfully merging this pull request may close these issues.

None yet

1 participant