This question is some thing different.
In my program i have more than 9 expected assertions.So, i have to reduce the wait time time if an element is not found.
for i in range(len(10)):
try:
i.click()
driver.find_element_by_name("XXX").send_keys("XXXX")
except Exception,e:
print "this is an expected assertion so as to continue the program further iteration"
In the above program due to the Unable to find element assertion it taking a lot of time..
How can i reduce the wait time...