如何在 selenium 中使用无头 Chrome 启用 JavaScript
Posted
技术标签:
【中文标题】如何在 selenium 中使用无头 Chrome 启用 JavaScript【英文标题】:How to enable JavaScript with headless Chrome in selenium 【发布时间】:2021-08-09 12:20:23 【问题描述】:import requests
from bs4 import BeautifulSoup
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.chrome.options import Options
import time
def checkLinkedIn(command):
url = f"https://www.linkedin.com/in/command"
path = "C:\Program Files (x86)\chromedriver.exe"
options = Options()
options.add_argument("--headless")
driver = webdriver.Chrome(path, options=options)
driver.get(url)
soup = BeautifulSoup(driver.page_source, 'html.parser')
time.sleep(2)
driver.quit()
name = soup.find("h1", attrs="class": "top-card-layout__title")
if name:
print("LinkedIn profile found")
print(url)
else:
print("No LinkedIn profile found")
def checkTwitter(command):
url = f"https://www.twitter.com/command"
path = "C:\Program Files (x86)\chromedriver.exe"
options = Options()
options.add_argument("--headless")
driver = webdriver.Chrome(path, options=options)
driver.get(url)
soup = BeautifulSoup(driver.page_source, 'html.parser')
time.sleep(2)
driver.quit()
at_tag = soup.find("div", attrs="dir": "ltr")
print(soup.text)
if at_tag:
print("Twitter profile found")
print(url)
else:
print("No Twitter profile found")
usrname = input("--> ")
checkTwitter(usrname)
LinkedIn 功能有效。然而,Twitter 提出了这个:
JavaScript 不可用。 我们检测到此浏览器中禁用了 JavaScript。请启用 JavaScript 或切换到支持的浏览器以继续使用 twitter.com。您可以在我们的帮助中心查看支持的浏览器列表。
如何在无头 Chrome 中启用 javascript?提前致谢。
【问题讨论】:
【参考方案1】:这可能是因为网站检测到它是无头浏览器并禁用了某些功能。
要绕过它,您可以(尽可能多地)欺骗无头浏览器的身份来欺骗网站。
尝试以下选项:
from fake_useragent import UserAgent
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument("--incognito")
options.add_argument("--nogpu")
options.add_argument("--disable-gpu")
options.add_argument("--window-size=1280,1280")
options.add_argument("--no-sandbox")
options.add_argument("--enable-javascript")
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option('useAutomationExtension', False)
options.add_argument('--disable-blink-features=AutomationControlled')
ua = UserAgent()
userAgent = ua.random
driver = webdriver.Chrome(options=options)
driver.execute_script("Object.defineProperty(navigator, 'webdriver', get: () => undefined)")
driver.execute_cdp_cmd('Network.setUserAgentOverride', "userAgent": userAgent)
这对我来说适用于一个特别顽固的网站。 我从许多 SO 答案中收集到的选项,尤其是这个答案:https://***.com/a/53040904/5339857
【讨论】:
【参考方案2】:使用
options.add_argument("--enable-javascript")
【讨论】:
以上是关于如何在 selenium 中使用无头 Chrome 启用 JavaScript的主要内容,如果未能解决你的问题,请参考以下文章
切换选项卡时,带有无头 chrome 的 Selenium 无法获取 url
如何使用 Java 和 Selenium 为我的驱动程序传递无头选项?
在 Linux 上使用无头 Chrome 访问被拒绝页面,而有头 Chrome 通过 Python 使用 Selenium 在 Windows 上工作