mirror of
https://github.com/zulip/zulip.git
synced 2025-11-07 23:43:43 +00:00
15 lines
243 B
CoffeeScript
15 lines
243 B
CoffeeScript
casper = require("casper").create()
|
|
|
|
links = [
|
|
"http://google.com/"
|
|
"http://yahoo.com/"
|
|
"http://bing.com/"
|
|
]
|
|
|
|
casper.start()
|
|
|
|
casper.each links, (self, link) ->
|
|
@thenOpen link, -> @echo "#{@getTitle()} - #{link}"
|
|
|
|
casper.run()
|