Elixir関連の記事を眺めていたら以下の記事を見つけた。面白そうなので試してみる。 Scraping a Website with Elixir – Robert Lord core.garbage-collection.net 基本的には上記の記事に沿う。 PhantomJSのインストール npm --save phantomjs pakcage.jsonにrun scriptを追加。 ...(省略) "scripts": { "phantomjs": "phantomjs --webdriver=5555", "test": "echo \"Error: no test specified\" && exit 1" }, ...(省略) プロジェクトの作成 mix new elixir_scraping_sample mix.exsにHoundを追加。最新は0.7.6。(0.7.2を

