We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fac4f36 commit f5aa767Copy full SHA for f5aa767
langchain/document_loaders/url_selenium.py
@@ -71,6 +71,7 @@ def _get_driver(self) -> Union["Chrome", "Firefox"]:
71
chrome_options = ChromeOptions()
72
if self.headless:
73
chrome_options.add_argument("--headless")
74
+ chrome_options.add_argument("--no-sandbox")
75
if self.executable_path is None:
76
return Chrome(options=chrome_options)
77
return Chrome(executable_path=self.executable_path, options=chrome_options)
0 commit comments