SendKeys function adds me an ASCII Null in the end of string or instead of commands like Enter, Arrow Down, Page Down(but TAB works correctly). I have this problem only in Firefox.
I could use setText for setting text, but I still need Arrow Down and Enter buttons…
There is my code:

WebUI.sendKeys(findTestObject(‘to’), Keys.chord(‘l’, ‘i’, ‘b’))
WebUI.sendKeys(findTestObject(‘to’), Keys.chord(Keys.ARROW_DOWN))
WebUI.sendKeys(findTestObject(‘to’), Keys.chord(Keys.ENTER))
Thanks in advance!