12 lines
237 B
Ruby
12 lines
237 B
Ruby
|
require 'watir'
|
||
|
require 'pry'
|
||
|
|
||
|
browser = Watir::Browser.new
|
||
|
|
||
|
browser.goto 'https://www.theguardian.com/commentisfree/2020/aug/04/economists-letter-carbon-economy-climate-change-rebuild'
|
||
|
article_text = browser.article.text
|
||
|
binding.pry
|
||
|
|
||
|
|
||
|
|