Questions tagged [slimerjs]

SlimerJS is a scriptable browser, aiming to keep the same API as PhantomJS, but built on top of Gecko (i.e. Firefox) instead of on top of WebKit.

SlimerJS allows you to interact with a web page through external JavaScript code:

  • Opening a webpage
  • Clicking on links
  • Modifying the content...

It is useful to do functional tests, page automation, network monitoring, screen capture, etc.

SlimerJS is similar to PhantomJs, except that it runs Gecko, the browser engine of Mozilla Firefox, instead of Webkit (and it is not yet truly headless).


Resources :

124 questions
0
votes
1 answer

PhantomJS and SlimerJS fail to render some sites

I didn't get any output file (image) when trying to execute render_multi_url.js in phantomjs or slimerjs for some url like: www.tamasoft.co.jp/en/general-info/unicode.html www.bbc.co.uk I am using the latest version of both phantomjs and slimerjs.…
alioui
  • 11
  • 1
0
votes
1 answer

How to run child process in CasperJS with SlimerJS as engine

Is it possible? Like we can do with Phantom engine by var cp = require('child_process'); But it doesn't work when I use Slimer as engine. I looked into the doc of slimer and it seems that Slimer doesn't have the child_process module. Is there any…
mr5iff
  • 19
  • 2
0
votes
1 answer

CasperJS (SlimerJS engine), step does not continue after evaluate

When the script is executed, it will never reach the line where it says "I WILL NEVER BE EXECUTED". /*********/ var casper = require('casper').create( { //clientScripts: ["includes/jquery-1.11.1.min.js"], waitTimeout: 15000, stepTimeout:…
-1
votes
1 answer

CasperJS not confirming dialog

Using casperjs 1.1.4 with slimerjs 1.0.0-beta1 and Firefox 58.0b11. I have the following code: casper.then(function() { casper.setFilter( 'page.confirm', function(msg) { return true; }, ); …
bmakan
  • 332
  • 3
  • 11
1 2 3
8
9