seleniumbase 4.32.6__py3-none-any.whl → 4.32.7__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- seleniumbase/__version__.py +1 -1
- seleniumbase/core/browser_launcher.py +6 -0
- {seleniumbase-4.32.6.dist-info → seleniumbase-4.32.7.dist-info}/METADATA +2 -2
- {seleniumbase-4.32.6.dist-info → seleniumbase-4.32.7.dist-info}/RECORD +8 -8
- {seleniumbase-4.32.6.dist-info → seleniumbase-4.32.7.dist-info}/LICENSE +0 -0
- {seleniumbase-4.32.6.dist-info → seleniumbase-4.32.7.dist-info}/WHEEL +0 -0
- {seleniumbase-4.32.6.dist-info → seleniumbase-4.32.7.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.32.6.dist-info → seleniumbase-4.32.7.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.32.
|
2
|
+
__version__ = "4.32.7"
|
@@ -2128,6 +2128,10 @@ def _set_chrome_options(
|
|
2128
2128
|
binary_loc = detect_b_ver.get_binary_location(br_app, True)
|
2129
2129
|
if os.path.exists(binary_loc):
|
2130
2130
|
binary_location = binary_loc
|
2131
|
+
elif os.path.exists("/usr/bin/google-chrome-stable"):
|
2132
|
+
binary_location = "/usr/bin/google-chrome-stable"
|
2133
|
+
elif os.path.exists("/usr/bin/google-chrome"):
|
2134
|
+
binary_location = "/usr/bin/google-chrome"
|
2131
2135
|
extra_disabled_features = []
|
2132
2136
|
if chromium_arg:
|
2133
2137
|
# Can be a comma-separated list of Chromium args or a list
|
@@ -2228,6 +2232,8 @@ def _set_chrome_options(
|
|
2228
2232
|
chrome_options.add_argument("--wm-window-animations-disabled")
|
2229
2233
|
chrome_options.add_argument("--enable-privacy-sandbox-ads-apis")
|
2230
2234
|
chrome_options.add_argument("--disable-background-timer-throttling")
|
2235
|
+
# Prevent new tabs opened by Selenium from being blocked:
|
2236
|
+
chrome_options.add_argument("--disable-popup-blocking")
|
2231
2237
|
# Skip remaining options that trigger anti-bot services
|
2232
2238
|
return chrome_options
|
2233
2239
|
chrome_options.add_argument("--test-type")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.32.
|
3
|
+
Version: 4.32.7
|
4
4
|
Summary: A complete web automation framework for end-to-end testing.
|
5
5
|
Home-page: https://github.com/seleniumbase/SeleniumBase
|
6
6
|
Author: Michael Mintz
|
@@ -112,7 +112,7 @@ Requires-Dist: beautifulsoup4==4.12.3
|
|
112
112
|
Requires-Dist: pyotp==2.9.0
|
113
113
|
Requires-Dist: markdown-it-py==3.0.0
|
114
114
|
Requires-Dist: mdurl==0.1.2
|
115
|
-
Requires-Dist: rich==13.9.
|
115
|
+
Requires-Dist: rich==13.9.4
|
116
116
|
Requires-Dist: python-xlib==0.33; platform_system == "Linux"
|
117
117
|
Requires-Dist: pyreadline3>=3.5.3; platform_system == "Windows"
|
118
118
|
Requires-Dist: setuptools~=70.2; python_version < "3.10"
|
@@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
|
|
3
3
|
sbase/steps.py,sha256=bKT_u5bJkKzYWEuAXi9NVVRYYxQRCM1_YJUrNFFRVPY,42865
|
4
4
|
seleniumbase/__init__.py,sha256=OtJh8nGKL4xtZpw8KPqmn7Q6R-86t4cWUDyVF5MbMTo,2398
|
5
5
|
seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
|
6
|
-
seleniumbase/__version__.py,sha256=
|
6
|
+
seleniumbase/__version__.py,sha256=OKPw6_xuqPFIHXuQ5lc-BDAB67jpMQ_dqtgnJNg8uL8,46
|
7
7
|
seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
seleniumbase/behave/behave_helper.py,sha256=elkl8P9eLulRAioLstE9baYNM9N_PHBmAOcajX-pH_Y,24198
|
9
9
|
seleniumbase/behave/behave_sb.py,sha256=-hza7Nx2U41mSObYiPMi48v3JlPh3sJO3yzP0kqZ1Gk,59174
|
@@ -36,7 +36,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=tNy-bMDgwHJO3bZxMpmo9weSE8uhbH0C
|
|
36
36
|
seleniumbase/console_scripts/sb_recorder.py,sha256=1oAA4wFzVboNhIFDwJLD3jgy9RuoavywKQG7R67bNZE,10908
|
37
37
|
seleniumbase/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
38
|
seleniumbase/core/application_manager.py,sha256=e_0sjtI8cjY5BNyZj1QBR0j6_oCScxGmSXYEpcYwuZE,576
|
39
|
-
seleniumbase/core/browser_launcher.py,sha256=
|
39
|
+
seleniumbase/core/browser_launcher.py,sha256=90omfhV8Q1-ki6Vend1j99C00LKFTKoNTYI4CwooOVk,216914
|
40
40
|
seleniumbase/core/capabilities_parser.py,sha256=meIS2uHapTCq2ldfNAToC7r0cKmZDRXuYNKExM1GHDY,6038
|
41
41
|
seleniumbase/core/colored_traceback.py,sha256=DrRWfg7XEnKcgY59Xj7Jdk09H-XqHYBSUpB-DiZt6iY,2020
|
42
42
|
seleniumbase/core/create_db_tables.sql,sha256=VWPtrdiW_HQ6yETHjqTu-VIrTwvd8I8o1NfBeaVSHpU,972
|
@@ -135,9 +135,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr
|
|
135
135
|
seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
|
136
136
|
seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
137
|
seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=pZFnqEJQEKZPyNFjkLD29s2HPQgCrWW9XJWpCPhWOoM,31691
|
138
|
-
seleniumbase-4.32.
|
139
|
-
seleniumbase-4.32.
|
140
|
-
seleniumbase-4.32.
|
141
|
-
seleniumbase-4.32.
|
142
|
-
seleniumbase-4.32.
|
143
|
-
seleniumbase-4.32.
|
138
|
+
seleniumbase-4.32.7.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
139
|
+
seleniumbase-4.32.7.dist-info/METADATA,sha256=HIdMgaVZC17OSFsh2a811ES3MZEIgfbjlXgnhyjbDZg,86380
|
140
|
+
seleniumbase-4.32.7.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
141
|
+
seleniumbase-4.32.7.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
142
|
+
seleniumbase-4.32.7.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
143
|
+
seleniumbase-4.32.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|