如何运行硒chromedriver为根? (不与--no的沙箱甚至工作(How to run s

2019-09-30 00:03发布

我试图chromedriver运行创造一些Selenium测试。 我跟着这个手动安装它。 我试图运行此代码:

from selenium import webdriver
driver = webdriver.Chrome(chrome_options=options)

当我把这个python脚本作为普通用户,它的工作。 但是,当我把它作为root(有必要对我来说),它不工作。 我试图按照一些建议,我试图用几个谷歌浏览器的选项,例如:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.add_argument('--no-sandbox')

driver = webdriver.Chrome(chrome_options=options,
                          service_args=[
                              '--verbose',
                              '--log-path=/home/me/Projects/selenium.log'
                          ]
)

但它仍然没有工作,这里是日志的一部分:

[1,001][INFO]: COMMAND InitSession {
   "capabilities": {
      "alwaysMatch": {
         "browserName": "chrome",
         "goog:chromeOptions": {
            "args": [ "--no-sandbox" ],
            "extensions": [  ]
         },
         "platformName": "any"
      },
      "firstMatch": [ {

      } ]
   },
   "desiredCapabilities": {
      "browserName": "chrome",
      "goog:chromeOptions": {
         "args": [ "--no-sandbox" ],
         "extensions": [  ]
      },
      "platform": "ANY",
      "version": ""
   }
}
[1,001][INFO]: Populating Preferences file: {
   "alternate_error_pages": {
      "enabled": false
   },
   "autofill": {
      "enabled": false
   },
   "browser": {
      "check_default_browser": false
   },
   "distribution": {
      "import_bookmarks": false,
      "import_history": false,
      "import_search_engine": false,
      "make_chrome_default_for_user": false,
      "show_welcome_page": false,
      "skip_first_run_ui": true
   },
   "dns_prefetching": {
      "enabled": false
   },
   "profile": {
      "content_settings": {
         "pattern_pairs": {
            "https://*,*": {
               "media-stream": {
                  "audio": "Default",
                  "video": "Default"
               }
            }
         }
      },
      "default_content_setting_values": {
         "geolocation": 1
      },
      "default_content_settings": {
         "geolocation": 1,
         "mouselock": 1,
         "notifications": 1,
         "popups": 1,
         "ppapi-broker": 1
      },
      "password_manager_enabled": false
   },
   "safebrowsing": {
      "enabled": false
   },
   "search": {
      "suggest_enabled": false
   },
   "translate": {
      "enabled": false
   }
}
[1,001][INFO]: Populating Local State file: {
   "background_mode": {
      "enabled": false
   },
   "ssl": {
      "rev_checking": {
         "enabled": false
      }
   }
}
[1,002][INFO]: Launching chrome: /opt/google/chrome/google-chrome --disable-background-networking --disable-client-side-phishing-detection --disable-default-apps --disable-hang-monitor --disable-infobars --disable-popup-blocking --disable-prompt-on-repost --disable-sync --disable-web-resources --enable-logging --ignore-certificate-errors --load-extension=/tmp/.org.chromium.Chromium.3rN146/internal --log-level=0 --metrics-recording-only --no-first-run --password-store=basic --remote-debugging-port=12613 --safebrowsing-disable-auto-update --test-type=webdriver --use-mock-keychain --user-data-dir=/tmp/.org.chromium.Chromium.dOwaRR data:,
[1,002][DEBUG]: DevTools request: http://localhost:12613/json/version
[8523:8523:0216/145622.514842:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.

奇怪的是,在InitSession命令有--no-sandbox的说法,但在Chrome推出时,它不是。 该错误Running as root without --no-sandbox is not supported. 反而出现了。

有什么建议吗?

Answer 1:

这个问题在chromedriver版本。 我使用的版本2.26。 重新安装到最新的版本(2.35)后,开始工作。 所以,只有一个强制性的参数--no-sandbox ,现在一切工作。 再次感谢你。



文章来源: How to run selenium chromedriver as root? (not working even with --no-sandbox