Skip to content

Commit ba2b13a

Browse files
committed
Update Recorder Mode script-generation
1 parent 0d09f23 commit ba2b13a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3312,7 +3312,9 @@ def __process_recorded_actions(self):
33123312
if (
33133313
url1 == url2
33143314
or url1 == url2.replace("www.", "")
3315-
or (len(url1) > 0 and url2.startswith(url1))
3315+
or (len(url1) > 0 and url2.startswith(url1)
3316+
and (int(srt_actions[n][3]) - int(
3317+
srt_actions[n-1][3]) < 6500))
33163318
):
33173319
srt_actions[n][0] = "f_url"
33183320
for n in range(len(srt_actions)):

0 commit comments

Comments
 (0)