Selenium introduction of cookies and other changes

Source: Internet
Author: User

Change and delete cookies:

Query: get_cookies () query all Cookie,get_cookie (the name of the cookie) for a single cookie

Delete: Delete_cookie (name of Cookie)

Add and Modify: Add_cookie ({"Name": "Cookie Name", Value: "Cookie Value"})

#Coding=utf-8#Change and delete cookies fromSeleniumImportWebdriverdr=Webdriver. Firefox () Dr.get ("http://www.baidu.com")#All Cookies Enquirycookies =dr.get_cookies ()Print('Types of cookies:', type (cookies))#Print out a list typePrint('Types of cookies:', type (Cookies[0]))#element is a dict typePrint('Print out all cookies:') forCookiesinchCookies:#print (cookie)    Print(cookie["name"],cookie["value"])#querying a single cookiePrint("Baiduid:", Dr.get_cookie ('Baiduid'))#Delete CookiesDr.delete_cookie ("Baiduid")Print(Dr.get_cookie ("Baiduid"))#none has been removed#Add CookiesDr.add_cookie ({"name":"TestCookie","value":"Testcookievalue"})Print(Dr.get_cookie ('TestCookie'))#Modify CookiesDr.add_cookie ({"name":"TestCookie","value":"Modify-testcookievalue"})Print(Dr.get_cookie ("TestCookie") ) Dr.quit ()

Selenium introduction of cookies and other changes

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.