I have to add stopwatch to my script
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
start = time.clock()
driver = webdriver.Firefox()
driver.get('https://ebay.com')
after this code it should stay for a while(5 seconds), than do other staff, like this:
element = driver.find_element_by_id("username")
element.send_keys("some text")
How to do it?