我想为一个网站创建多个窗口,所以我需要为每个窗口创建新的身份。我认为私人模式对我来说是个不错的解决方案。但是旧的方法并没有给出结果:
firefox_profile = webdriver.FirefoxProfile()
firefox_profile.set_preference("browser.privatebrowsing.autostart", True)
browser = webdriver.Firefox(firefox_profile=firefox_profile)
def main():
browser.switch_to.new_window('window')
browser.get("https://example.com")
我在码头找不到任何信息,所以也许你可以帮忙