-
-
Notifications
You must be signed in to change notification settings - Fork 758
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
5.0.0-BETA5: parameter type conflict #592
Comments
@amedvedjev Are you sure that it is appium issue? |
@TikhomirovSergey of course not :-). but it appears when i switch pom.xml to latest 5th version. now reverted back to 4th. thanks for any idea what to check. |
@amedvedjev It is defenetely the bug of selenium. and and now It is the bug of selenium! |
ok. indeed. thanks for help. |
anyway the issue started appear in Selenium 3.2.0. Do we need to use buggy version of selenium? |
@amedvedjev It was not expected. You can exclude 3.2.0 at the configuration |
I am confused - I also have just moved up versions - to selenium 3.3.1 using the java package and I am seeing the same issue on a line of code like this -
|
If I back down to the 3.0.0 level of selenium then i can compile again... |
@amyreit You are correct; there is somewhat of a conflict if you use the latest version of Selenium. What ended up resolving issues for me was including the latest version of guava within my pom.xml; even though I had not used it.
|
I don't have a pom file - I'm using eclipse and java.... so not sure how to make this compile work? The guava 21 is included in my classpath.... |
Tried to add latest guava to my pom, didn't make a difference. Making an anonymous function as advised by http://stackoverflow.com/a/42546102 to match the signature is a workaround, but for a first time selenium user, I gotta admit I prefer to rely on the official documentation, so I downgraded to 3.0.1. Especially since I'm not sure of the usage of ExpectedConditions static methods in that context. |
|
Instead of com.google.guava.guava I'm using com.google.inject.juice 3.0 with selenium-java 3.4.0. My maven project builds with no problem. However if I use com.google.inject.juice 4.x then I encounter the same issues described above. |
I updated https://mvnrepository.com/artifact/com.google.guava/guava to the latest version "23.0". It fixed my problem. |
I too had faced the same issue and the issue got solved with adding below dependencies in my pom file:
Issue is resolved now :) Thank you! |
Description
The text was updated successfully, but these errors were encountered: