Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ mycdp>=1.2.0
pynose>=1.5.5
platformdirs>=4.3.6;python_version<"3.9"
platformdirs>=4.4.0;python_version>="3.9"
typing-extensions>=4.13.2
typing-extensions~=4.13.2;python_version<"3.9"
typing-extensions>=4.15.0;python_version>="3.9"
sbvirtualdisplay>=1.4.0
MarkupSafe==2.1.5;python_version<"3.9"
MarkupSafe>=3.0.3;python_version>="3.9"
Expand All @@ -41,13 +42,13 @@ sniffio==1.3.1
h11==0.16.0
outcome==1.3.0.post0
trio==0.27.0;python_version<"3.9"
trio~=0.30.0;python_version>="3.9"
trio>=0.31.0,<1;python_version>="3.9"
trio-websocket~=0.12.2
wsproto==1.2.0
websocket-client~=1.8.0
selenium==4.27.1;python_version<"3.9"
selenium==4.32.0;python_version>="3.9" and python_version<"3.10"
selenium==4.35.0;python_version>="3.10"
selenium==4.36.0;python_version>="3.10"
cssselect==1.2.0;python_version<"3.9"
cssselect==1.3.0;python_version>="3.9"
sortedcontainers==2.4.0
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.41.12"
__version__ = "4.42.0"
14 changes: 14 additions & 0 deletions seleniumbase/fixtures/base_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -5419,6 +5419,20 @@ def __process_recorded_actions(self):
)
):
srt_actions[n][0] = "_skip"
for n in range(len(srt_actions)):
if (
(srt_actions[n][0] == "begin" or srt_actions[n][0] == "_url_")
and n > 1
and (
srt_actions[n - 1][0] == "f_url"
or srt_actions[n - 1][0] == "_url_"
)
and srt_actions[n][2] == srt_actions[n - 1][2]
and (
int(srt_actions[n][3]) - int(srt_actions[n - 1][3]) < 4800
)
):
srt_actions[n][0] = "_skip"
for n in range(len(srt_actions)):
if (
srt_actions[n][0] == "input"
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@
"pynose>=1.5.5",
'platformdirs>=4.3.6;python_version<"3.9"',
'platformdirs>=4.4.0;python_version>="3.9"',
'typing-extensions>=4.13.2',
'typing-extensions~=4.13.2;python_version<"3.9"',
'typing-extensions>=4.15.0;python_version>="3.9"',
"sbvirtualdisplay>=1.4.0",
'MarkupSafe==2.1.5;python_version<"3.9"',
'MarkupSafe>=3.0.3;python_version>="3.9"',
Expand All @@ -189,13 +190,13 @@
'h11==0.16.0',
'outcome==1.3.0.post0',
'trio==0.27.0;python_version<"3.9"',
'trio~=0.30.0;python_version>="3.9"',
'trio>=0.31.0,<1;python_version>="3.9"',
'trio-websocket~=0.12.2',
'wsproto==1.2.0',
'websocket-client~=1.8.0',
'selenium==4.27.1;python_version<"3.9"',
'selenium==4.32.0;python_version>="3.9" and python_version<"3.10"',
'selenium==4.35.0;python_version>="3.10"',
'selenium==4.36.0;python_version>="3.10"',
'cssselect==1.2.0;python_version<"3.9"',
'cssselect==1.3.0;python_version>="3.9"',
"sortedcontainers==2.4.0",
Expand Down