max / alloy
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
1 file changed,
+4 insertions,
-1 deletion
| @@ -184,7 +184,10 @@ | |||
| 184 | 184 | # `enter install` and means it two keystrokes from now. | |
| 185 | 185 | s.wait_for(r"step 6 of 6", 30) | |
| 186 | 186 | s.send(ENTER) | |
| 187 | - | s.wait_for(r"(?i)erase|confirm", 30) | |
| 187 | + | # The modal's own sentence, not its footer. `enter confirm` is what any | |
| 188 | + | # modal's footer reads, so waiting on that would also be satisfied by a | |
| 189 | + | # different one — and on this screen the next Enter erases a disk. | |
| 190 | + | s.wait_for(r"Erase .* and install Alloy", 30) | |
| 188 | 191 | s.send(ENTER) | |
| 189 | 192 | ||
| 190 | 193 |