I'm trying to simulate a user deleting a character from a textbox. This textbox fires many JS events, I've had much trouble typing (or typeKey-ing) in ift because of this.
My latest try was: sel.key_press(locator, 127)
and sel.key_press(locator, "\177
")
but they don't work.
What's the safest way?