gpt4 book ai didi

c# - 在 bet365 网站上,用于 Selenium 的 Chrome 驱动程序卡在灰屏中

转载 作者:行者123 更新时间:2023-12-03 17:23:08 26 4
gpt4 key购买 nike

尝试使用 Chrome 驱动程序和 Selenium 打开 bet365 网站时出现灰屏。

var driver = new ChromeDriver();
driver.Navigate().GoToUrl("https://www.bet365.it/");
enter image description here

最佳答案

我通过一些调整执行了您的用例并面临相同的后果。以下是执行细节:

  • 代码块 [Python]:
    from selenium import webdriver

    options = webdriver.ChromeOptions()
    options.add_argument("start-maximized")
    options.add_experimental_option("excludeSwitches", ["enable-automation"])
    options.add_experimental_option('useAutomationExtension', False)
    driver = webdriver.Chrome(options=options, executable_path=r'C:\WebDrivers\chromedriver.exe')
    driver.get('https://www.bet365.it/')
  • 浏览器快照:

  • bet365

    深潜
    当我检查 Terms and conditions明确提到:
    1. Other

    6.1 bet365 actively monitors traffic to and from its Site. Bet365 reserves the right to block access to the Site, at its discretion,should it encounter any evidence of automated or robotized gameactivity.



    结论
    好像 Selenium驱动 ChromeDriver发起 基于浏览上下文的被检测到并且导航被阻止。

    关于c# - 在 bet365 网站上,用于 Selenium 的 Chrome 驱动程序卡在灰屏中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65053339/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com