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 9fb3378 commit e327168Copy full SHA for e327168
seleniumbase/fixtures/base_case.py
@@ -5419,6 +5419,20 @@ def __process_recorded_actions(self):
5419
)
5420
):
5421
srt_actions[n][0] = "_skip"
5422
+ for n in range(len(srt_actions)):
5423
+ if (
5424
+ (srt_actions[n][0] == "begin" or srt_actions[n][0] == "_url_")
5425
+ and n > 1
5426
+ and (
5427
+ srt_actions[n - 1][0] == "f_url"
5428
+ or srt_actions[n - 1][0] == "_url_"
5429
+ )
5430
+ and srt_actions[n][2] == srt_actions[n - 1][2]
5431
5432
+ int(srt_actions[n][3]) - int(srt_actions[n - 1][3]) < 4800
5433
5434
+ ):
5435
+ srt_actions[n][0] = "_skip"
5436
for n in range(len(srt_actions)):
5437
if (
5438
srt_actions[n][0] == "input"
0 commit comments