gpt4 book ai didi

c# - Selenium 的 Chrome 驱动程序卡在 bet365 网站上的灰色屏幕

转载 作者:行者123 更新时间:2023-12-04 14:13:04 24 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# - Selenium 的 Chrome 驱动程序卡在 bet365 网站上的灰色屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62794511/

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