I am getting exception while trying to implement sendKeys as "The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from required .class files". I am trying to type a number 300 in a textbox with id "min-value". This is a java code to run in selenium.
I have jre 8 installed on my system.
Below is the code which gives problem
driver.findElement(By.id("min-value")).sendKeys("300");
I have imported all the required Selenium webdriver packages. I am working on Eclipse 3.3 version
Can anyone please help.