Today I will show how to deal with cookies and Firefox.
Selenium Python Client Driver is a Python language binding for Selenium Remote Control.
You can read more about this module here.
You can find some examples , but most of webpages working with cookies.So let's make one simple tutorial.
The next source code is very simple and most of the python users knows what means.
$ python
Python 2.7.3 (default, Jan 2 2013, 16:53:07)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from selenium import webdriver
>>> from selenium.common.exceptions import NoSuchElementException
>>> from selenium.webdriver.common.keys import Keys
>>> browser = webdriver.Firefox()
>>> browser.get("http://facebook.com/")
If you want then you can read more about my tutorial here.
Also you can see more about my work with python here.