Skip to content

Commit

Permalink
Merge pull request #177 from jdi-testing/issue_1630_selenium_page_crash
Browse files Browse the repository at this point in the history
Disabled /dev/shm usage for Chrome instances
  • Loading branch information
ivnglkv authored Feb 2, 2024
2 parents 2a8afda + 481e1fb commit d7f63af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/selenium_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def get_webdriver() -> webdriver.Remote:
chrome_options = Options()
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--headless")
chrome_options.add_argument("--disable-dev-shm-usage")

capabilities = {
"browserName": "chrome",
Expand Down

0 comments on commit d7f63af

Please sign in to comment.