Error when using sendKeys() with Selenium WebDriver Java.lang.CharSequence cannot be resolved

前端 未结 8 1133
北海茫月
北海茫月 2020-12-19 15:46

I have imported the following and still get an error when using sendKeys();

import org.openqa.selenium.*;
import org.openqa.selenium.firefox.*;
         


        
8条回答
  •  醉话见心
    2020-12-19 16:23

    Issue will get resolved on upgrading to Eclipse Luna and then changing the compiler version to 1.8

    Compiler version 1.8 is not available with the previous version

    There you are getting The type java.lang.CharSequence error.

提交回复
热议问题