我正在尝试在EC2实例上以无头模式运行Python Selenium会话。 我很难尝试以无头模式使用Chrome。
import os
import json
import time
from selenium import webdriver
from selenium.common.exceptions import TimeoutException, NoSuchElementException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options
options = Options()
options.headless = True
options.add_argument("window-size=1366,768")
if options.headless:
options.add_argument('user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) '
'Chrome/71 Safari/537.36')
BASE_DIR = os.path.dirname(os.path.abspath('__file__'))
driver = webdriver.Chrome(executable_path='/home/ec2-user/certs/chromedriver.exe', chrome_options=options)
我收到以下错误,但我不理解:
WebDriverException:消息:“ chromedriver.exe”可执行文件可能具有 错误的权限。请参阅 https://sites.google.com/a/chromium.org/chromedriver/home
您能指导我解决该问题的步骤吗?
非常感谢。