JSFiddle - React, Tailwind, and code Playground
JavaScript
var casper = require('casper').create();
casper.start('https://logrocket.com');
casper.then(function() {
this.echo('First Page: ' + this.getTitle())
});
casper.thenOpen('http://yomieluwande.me', function() {
this.echo('Second page: ' + this.getTitle())
});
casper.run();