1. 程式人生 > >Linux root 使用者下 selenium 執行chrome --no-sandbox的問題的解決

Linux root 使用者下 selenium 執行chrome --no-sandbox的問題的解決

#coding = utf-8
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument("--no-sandbox")
browser = webdriver.Chrome("/root/note/Python/myTools/Scrapy/driver/chromedriver",chrome_options=options)

browser.get("https://www.baidu.com")

print(browser.page_source)