(self)
| 615 | ) |
| 616 | |
| 617 | def copy(self): |
| 618 | with self.hold(CMD): |
| 619 | self.send_keys("c") |
| 620 | |
| 621 | # Small wait to let Chrome stabilize focus after clipboard operation |
| 622 | time.sleep(0.1) |
| 623 | |
| 624 | def paste(self): |
| 625 | with self.hold(CMD): |
no test coverage detected