V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
godall
V2EX  ›  问与答

有个牛逼的网站(上海房地产),无法用 Python 打开网页访问

  •  
  •   godall · 10 天前 · 198 次点击
    网站地址: https://183.194.252.232:2004/old_house/old_house.html
    正常用浏览器访问正常,摁下 F12 调试模式也可以,虽然有断点防跟踪,但是直接禁用断点就可以了。
    但是用 python selenium 就是不行,访问该地址直接空白,返回 400 错误,不知道怎么做到的

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

    options = webdriver.ChromeOptions()
    options.add_experimental_option("excludeSwitches",['enable-automation'])
    options.binary_location=r'D:\programs\chrome\chrome.exe'
    options.add_argument('--no-sandbox')
    options.add_argument('--enable-chrome-browser-cloud-management')
    driver = webdriver.Chrome(options=options)

    url='https://183.194.252.232:2004/old_house/old_house.html'
    try:
    driver.get(url)
    driver.implicitly_wait(5)
    time.sleep(15)
    except Exception as e:
    import traceback
    logger.error( traceback.format_exc() )
    finally:
    driver.quit()
    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3380 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 10:58 · PVG 18:58 · LAX 02:58 · JFK 05:58
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.