I have an already working project in java 1.7, but when I move it to Java 1.8 there are some things to convert to keep it working in 1.8. One of those is the following:
WebElement weAux;
(... some code....)
weAux.SendKeys(Keys.TAB);
I am Using IntelliJIdea 15.0.2 and it has an inspection that claims the following:
"sendKeys (java.lang.CharSequence...) in WebElement cannot be applied to (org.openqa.selenium.Keys)"
Keys.TAB is from org.openqa.selenium.Keys;
Thanks in advance. Atilio