-
-
Notifications
You must be signed in to change notification settings - Fork 760
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
Warning: Selenium 3.5.1 breaks java client 5.0.0-BETA9 #696
Comments
I just solved this exact issue on my setup. Same resolution approach, forcing 3.4.0. |
Faced the same problem. Thank you for a solution. I tried a different one, it also helps:
|
@QAutomatron @welnanick @jason-edstrom Whats the actual problem faced here? What breaks with 3.5.1? Gonna hands-on anyways tomorrow. Is it only with gradle? |
Changes are here: SeleniumHQ/selenium@323132d |
It seems annotations (or possibly all FindBy operations given the changes in selenium) break. When testing android, elements populated using Unfortunately I am not in a position to investigate further, nor confirm whether it is just presenting itself with gradle or not. |
Cool thanks. will investigate further. |
@TikhomirovSergey ping |
I'm seeing this for my Android tests after the Selenium 3.5.1 upgrade...
Where my code is attempting this...
Note: I'm not using PageFactory |
The fix is here #699. It will be published on the nearest (26.08.2017 - 27.08.2017) weekend. |
I am using gradle to handle dependencies for my project. In my
build.gradle
I havetestCompile "io.appium:java-client:5.0.0-BETA9"
to compile the appium java client. It seems Selenium 3.5.1 was just released (their website has not been updated as I am writing this), and for some reason gradle is grabbing version 3.5.1 automatically for selenium-api, selenium-remote-driver, and selenium-support. I don't know why this is happening, but it is and it breaks the java client. I had to addto fix my project.
So, if your project just suddenly stopped working for no reason whatsoever, check if these packages were updated, and if so make sure to force version 3.4.0 for them.
The text was updated successfully, but these errors were encountered: