Kill the process and wait for it to exit
(self, signal=SIGKILL)
| 546 | sleep(0.01) |
| 547 | |
| 548 | def kill_and_wait_for_exit(self, signal=SIGKILL): |
| 549 | """Kill the process and wait for it to exit""" |
| 550 | self.kill(signal) |
| 551 | self.wait_for_exit() |
| 552 | |
| 553 | def modify_argument(self, argument, new_value): |
| 554 | """Modify the 'argument' in start args with new_value. |