Skip to content
Advertisement

warning: [unchecked] unchecked method invocation on creating a a custom Selenium ExcpectedCondition

I am trying to create a custom Selenium explicit wait with the following code

JavaScript

then

JavaScript

But I am getting these warnings while compilation

JavaScript

Compiling with -Xlint:unchecked flag I get

JavaScript

Any ideas on how to fix that? I am using Selenium 2.53

Advertisement

Answer

I’m not familiar with this framework but according to the javadoc of the interface you are extending, you should write implements ExpectedCondition<Boolean> and the parameter of the overridden method should be of type WebDriver, not Object.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement