Skip to content

Commit acd9be3

Browse files
authored
Merge pull request #620 from seleniumbase/use-gl-swiftshader
Add default Chrome option: "--use-gl=swiftshader"
2 parents 2c9af06 + e83ccc5 commit acd9be3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

seleniumbase/core/browser_launcher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ def _set_chrome_options(
236236
chrome_options.add_argument("--headless")
237237
# if headless or disable_gpu:
238238
chrome_options.add_argument("--disable-gpu") # (Now always on)
239+
chrome_options.add_argument("--use-gl=swiftshader")
239240
# if (headless and "linux" in PLATFORM) or no_sandbox:
240241
chrome_options.add_argument("--no-sandbox") # (Now always on)
241242
if "linux" in PLATFORM:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
setup(
5656
name='seleniumbase',
57-
version='1.42.8',
57+
version='1.42.9',
5858
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5959
long_description=long_description,
6060
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)