for use when typing or navigating, because in demos we want that to happen faster
(keyStr string)
| 38 | // for use when typing or navigating, because in demos we want that to happen |
| 39 | // faster |
| 40 | func (self *TestDriver) pressFast(keyStr string) { |
| 41 | self.SetCaption("") |
| 42 | self.gui.PressKey(keyStr) |
| 43 | self.Wait(self.inputDelay / 5) |
| 44 | } |
| 45 | |
| 46 | func (self *TestDriver) click(x, y int) { |
| 47 | self.SetCaption(fmt.Sprintf("Clicking %d, %d", x, y)) |
no test coverage detected