Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created December 31, 2010 15:50
Show Gist options
  • Save andrewsmedina/761100 to your computer and use it in GitHub Desktop.
Save andrewsmedina/761100 to your computer and use it in GitHub Desktop.
browser.find_by_css_selector('h1').all() #returns a list
browser.find_by_css_selector('h1').first()
browser.find_by_css_selector('h1').last()
browser.find_by_css_selector('h1')[1]
### or
browser.find_by_css_selector('h1') #returns a list
browser.find_by_css_selector('h1').first
browser.find_by_css_selector('h1').last
browser.find_by_css_selector('h1')[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment