1

尝试加载此动态网站但失败。任何人都可以帮忙吗?

driver = webdriver.Chrome()
driver.get('https://apply.95559.com.cn/personbank/portals/ptQuotaQryCoins.do')
4

1 回答 1

0

对加载动态网站时所面临的问题不是很清楚。但是,我能够使用以下代码块加载网站:

  • 代码块:

    from selenium import webdriver
    from selenium.webdriver.chrome.options import Options
    from selenium.webdriver.chrome.service import Service
    
    options = Options()
    options.add_argument("start-maximized")
    options.add_experimental_option("excludeSwitches", ["enable-automation"])
    options.add_experimental_option('excludeSwitches', ['enable-logging'])
    options.add_experimental_option('useAutomationExtension', False)
    options.add_argument('--disable-blink-features=AutomationControlled')
    s = Service('C:\\BrowserDrivers\\chromedriver.exe')
    driver = webdriver.Chrome(service=s, options=options)
    driver.get('https://apply.95559.com.cn/personbank/portals/ptQuotaQryCoins.do')
    
  • 浏览器快照:

apply_95559_com

于 2022-02-13T21:51:40.227 回答