(x, y int)
| 44 | } |
| 45 | |
| 46 | func (self *TestDriver) click(x, y int) { |
| 47 | self.SetCaption(fmt.Sprintf("Clicking %d, %d", x, y)) |
| 48 | self.gui.Click(x, y) |
| 49 | self.Wait(self.inputDelay) |
| 50 | } |
| 51 | |
| 52 | // Should only be used in specific cases where you're doing something weird! |
| 53 | // E.g. invoking a global keybinding from within a popup. |