We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2375a77 commit 10a0957Copy full SHA for 10a0957
seleniumbase/fixtures/base_case.py
@@ -3486,6 +3486,15 @@ def __process_recorded_actions(self):
3486
and srt_actions[n - 1][2] == ""
3487
):
3488
srt_actions[n - 1][0] = "_skip"
3489
+ elif (
3490
+ srt_actions[n][0] == "input"
3491
+ and n > 1
3492
+ and srt_actions[n - 2][0] == "input"
3493
+ and srt_actions[n - 1][0] == "submi"
3494
+ and srt_actions[n - 2][1].startswith("textarea")
3495
+ and srt_actions[n - 2][1] == srt_actions[n][1]
3496
+ ):
3497
+ srt_actions[n - 2][0] = "_skip"
3498
for n in range(len(srt_actions)):
3499
if (
3500
(srt_actions[n][0] == "begin" or srt_actions[n][0] == "_url_")
0 commit comments