Generates a fake arrow up key press.
(&self)
| 129 | |
| 130 | /// Generates a fake arrow up key press. |
| 131 | pub fn press_arrow_right(&self) { |
| 132 | self.safe_try_send(Key::ArrowRight) |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | /// Interface to interact with the browser's input, be it via a real keyboard or our custom |