在Selenium中使用Chrome查看Flash Cookies,可以通过以下步骤实现:
from selenium import webdriver
# 设置ChromeDriver的路径
chrome_driver_path = "path/to/chromedriver"
# 创建Chrome浏览器实例
driver = webdriver.Chrome(executable_path=chrome_driver_path)
# 打开网页
driver.get("http://example.com")
# 打开开发者工具
driver.execute_script("window.open('chrome://settings/cookies')")
# 切换到新标签页
driver.switch_to.window(driver.window_handles[-1])
领取专属 10元无门槛券
手把手带您无忧上云