JSFiddle - React, Tailwind, and code Playground

by Yomi Eluwande

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();