Guest User

Untitled

a guest
Oct 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. with open('Aperture Science.csv', 'a+', newline='') as outfile:
  2. writer = csv.writer(outfile)
  3. for row in zip(langs1_text, langs2_text, langs_text, elem_href):
  4. writer.writerow(row)
  5.  
  6. driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
Add Comment
Please, Sign In to add comment