Skip to content

Instantly share code, notes, and snippets.

View tarun3kumar's full-sized avatar

Tarun Kumar tarun3kumar

View GitHub Profile
@santiycr
santiycr / implicit_wait_selenium.py
Created July 26, 2011 17:57
Implicit wait Selenium 1
import time, re
from selenium import selenium
class implicitWaitSelenium(selenium):
"""
Extending the regular selenium class to add implicit waits
"""
def __init__(self, *args):
self.implicit_wait = 30