Okay, so I used mechanization, queries, a wonderful soup and even selenium to my enterprise to do something similar, and I came to the conclusion that urllib and other default modules are the best way to go. The only problem is that I canβt understand how to use it at all. So can someone please show me some good places to find out specifically about this? I also have a better understanding of examples, so if someone converts this to what I ask, that would be great (also including the submit button LOL)
from selenium import webdriver driver = webdriver.Firefox() driver.get("http://www.jonessoda.com/contests/back2school") element = driver.find_element_by_name("fname") element.send_keys("Ben")
source share