Skip to content

Instantly share code, notes, and snippets.

@cigrainger
Created March 18, 2015 18:13
Show Gist options
  • Save cigrainger/f0a1a0a94dcb1174ff23 to your computer and use it in GitHub Desktop.
Save cigrainger/f0a1a0a94dcb1174ff23 to your computer and use it in GitHub Desktop.
try:
features_list = driver.find_elements_by_class_name('detail_attrs')
except:
i = 1
while i < 10:
sleep(5)
try:
features_list = driver.find_elements_by_class_name('detail_attrs')
except:
i += 1
pass
else:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment