Skip to content

Instantly share code, notes, and snippets.

@chintani
chintani / Python-Selenium-Errors
Created March 19, 2015 03:16
functional_test.py and the error it produces
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import unittest
class NewVisitorTest(unittest.TestCase): #
def setUp(self): #
self.browser = webdriver.Firefox()
self.browser.implicitly_wait(3)