mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-05 04:05:06 -05:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
var page = require('webpage').create();
|
|
setTimeout(function() {
|
|
page.open('http://localhost:8765', function(status) {
|
|
setTimeout(function() {
|
|
phantom.exit();
|
|
}, 1000);
|
|
});
|
|
}, 1000);
|