Python seleniumはcookiesで上陸

578 ワード

Python seleniumはcookiesシミュレーションでログインしadd_を通過クッキー()の方法
    self.driver.get("https://www.xxx.com")        
    cookies = [
        {
            'domain': '.xxx.com',
            'name': 'UserName',
            'value': 'xxx',
        },
        {
            'domain': '.xxx.com',
            'name': 'cooikesxxxxxx',
            'value': 'xxxxx',
        }
    ]
    for c in cookies:
        self.driver.add_cookie(c)
    self.driver.refresh()