(ns dl
(:require[etaoin.api :as e]))(def links
["https://www28.zippyshare.com/v/xxxxxx/file.html""https://www11.zippyshare.com/v/xxxxxx/file.html"
...])(defn grab
[& _](e/with-chrome-headless
d
(doseq[link links](e/go d link)(e/wait d 1)(e/click d {:css"#dlbutton"})(e/wait d 30))))