(edit_box, value)
| 89 | |
| 90 | # Use keyboard to enter values in each box |
| 91 | def _enter_value(edit_box, value): |
| 92 | qtbot.mouseDClick(edit_box, Qt.LeftButton) |
| 93 | qtbot.keyClicks(edit_box, f"{value}") |
| 94 | qtbot.keyClick(edit_box, Qt.Key_Enter) |
| 95 | |
| 96 | # Enter a new ROI using keyboard |
| 97 | sel = (11, 8, 23, 19) |
no outgoing calls
no test coverage detected