(self, script)
| 211 | self.DO_DELAY(argv) |
| 212 | |
| 213 | def executeScript(self, script): |
| 214 | if len(script) > 0: |
| 215 | commands = [] |
| 216 | for l in script: |
| 217 | extracted = self.extract_command(l) |
| 218 | if extracted: |
| 219 | commands.append(extracted) |
| 220 | |
| 221 | for command in commands: |
| 222 | cmd, argv = command |
| 223 | self.dispatch_command(cmd, argv) |
| 224 | |
| 225 | def main(args): |
| 226 | p = MouseScriptParser() |
no test coverage detected