The two possible solution to the problem can be:
- Change the compiler version from old version to 1.5 or greater.
 
- Change the JRE version from JRE8 to JRE7.
 
Or just change the way you provide input string to sendKeys()
- Create a CharSequence[] ch={"Your string you want to search"};
 
- element.sendKeys(new String[]{"Your string you want to search"});
 
Hope this helps.