[java] increasing of properties scope for better appium compatibility #14183
[java] increasing of properties scope for better appium compatibility #14183pujagani merged 9 commits intoSeleniumHQ:trunkfrom
Conversation
FluentWait -> clock FluentWait -> timeout FluentWait -> interval FluentWait -> sleeper FluentWait -> ignoredExceptions FluentWait -> messageSupplier FluentWait -> input
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
pujagani
left a comment
There was a problem hiding this comment.
Thank you @iampopovich!
|
thanks god . it took a bit more time than usual 🙂 |
…SeleniumHQ#14183) Co-authored-by: Puja Jagani <[email protected]>
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.
Description
according to request in #13949 scopes of properties were increased
here's a part of request
Motivation and Context
Types of changes
Checklist
PR Type
Enhancement
Description
HttpCommandExecutorto improve compatibility with Appium:clientfield changed to public.commandCodecandresponseCodecfields changed to protected.capabilitiesfield inRemoteWebDriverto protected.exefield inDriverService.Builderto public.FluentWaitto protected:input,clock,sleeper,timeout,interval,messageSupplier,ignoredExceptions.Changes walkthrough 📝
HttpCommandExecutor.java
Modify access levels for HttpCommandExecutor fieldsjava/src/org/openqa/selenium/remote/HttpCommandExecutor.java
clientfield to public.commandCodecandresponseCodecfields to protected.RemoteWebDriver.java
Modify access level for RemoteWebDriver capabilities fieldjava/src/org/openqa/selenium/remote/RemoteWebDriver.java
capabilitiesfield to protected.DriverService.java
Modify access level for DriverService.Builder exe fieldjava/src/org/openqa/selenium/remote/service/DriverService.java
exefield to public.FluentWait.java
Modify access levels for FluentWait fieldsjava/src/org/openqa/selenium/support/ui/FluentWait.java
input,clock,sleeper,timeout,interval,messageSupplier,ignoredExceptions.