Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. driver.find_element_by_id('showcomment').click
  2.  
  3. driver.find_element_by_link_text('Show more comments').click
  4.  
  5. comments = driver.find_elements_by_class_name('gig-comment-body')
  6.  
  7. authors = driver.find_elements_by_class_name('gig-comment-header-left')
  8.  
  9. comments_list = list(zip([author.text for author in authors], [comment.text for comment in comments]))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement