Actions act = new Actions(driver);
act.keyDown(CharSequence key);
If I search online to find out what CharSequence is, I get all the information about the CharSequence interface. I can't understand what does a CharSequence interface has to do with CharSequence key used in Actions class?
Thanks