document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. var helpers = require("./helpers.js");
  2.  
  3. var selector = "#mypopup";
  4.  
  5. casper.start("http://mysite.com", function() {
  6.     casper.echo(\'Start!\');
  7. });
  8.  
  9. // waiting 10 sec for the text to appear
  10. helpers.waitfor(function() {
  11.     return (casper.getHTML(selector).trim().length > 0) === true ? true : false;
  12. }, true, 100, 0, 100, function() {
  13.     casper.test.assert((casper.getHTML(selector).trim().length > 0), "Dialog text should be displayed "+selector);
  14. });
  15.  
  16. casper.run();
');