Headless Browser Testing with CasperJS

May 6, 2024
5 min read
Share this post

I must say that when the first time I heard about Headless Browser, I was completely clueless about how a browser can be called Headless. Why there is a testing framework when we have such a good testing framework Selenium. But, let me say don’t compare Selenium and Headless Browser. Both of them are completely different. Both have different purposes.
A headless browser is a browser without a graphical user interface (GUI). They are executed via command line or via network communication. The main advantage they have over normal browsers is that they provide automated control of the web pages without using much CPU resources like memory, RAM.
On the other hand, Selenium is a portable testing framework for testing web applications. It also provides a record/ playback tool for authoring tests without the need to learn a test scripting language.
CasperJS is a Headless Browser Testing Framework. Till now in the last blog post, we have discussed what Headless Browser Testing is, what are the advantages and what are the limitations of this testing. Now, we will discuss a specific Headless Browser testing framework.

What is CasperJS?

CasperJS is a JavaScript framework built on top of PhantomJS (Webkit) and SlimerJS (Gecko). Now, you must be wondering, what is WebKit? and what is Gecko? Let me first explain a WebKit. Webkit is an open-source web browser engine rendering HTML, XHTML, CSS, XML images in Safari, Chrome and Opera. Gecko is a web browser engine for Firefox.
CasperJS is a Software testing services framework for page status, functional navigation, scraping data off the web page and screen capture.
CasperJS also allows assertions, which are an easier way to track failed tests.
We will start discussing a few functions that are most commonly used for testing.

CasperJS Modules

The most important feature of CasperJS is its tester module, where it offers a handful of functions that can testing processes using CasperJS.
We will be discussing the testing code to test the HTTP Status Code of the page after deployment.
Let’s first have a look at the list of some modules, then we will discuss the code for HTTP Status Code.

These are just a few modules out of so many modules that are available. It is highly recommended that you go through the API Documentation before proceeding for the coding part.
The CasperJS Documentation is a very good document listing all the functions with examples.

Install CasperJS:

  1. Follow the link to install CasperJS.
  2. I will be discussing how to install CasperJS on Windows using npm.
  3. You can install CasperJS using npm:
  4. Open the Node.js command prompt from the start menu.
  5. Type the following command in the terminal:
    npm install -g casperjs
Install CasperJS Command Prompt


Install PhantomJS:

  1. Go to the link to download Phantom for Windows.
  2. Download the zip file and extract the zip file.
  3. Once extracted the phantomjs.exe file is ready to use.
  4. You need to set the environment variable to use phantomjs without any headache.
  5. Right-click on My Computer or This PC.
  6. Select properties from the list.
  7. Go to Advanced System Settings from the left side Menu.
  8. Select Environment Variables from the window that pop-up.
  9. Now select the Path Variable to Edit either from the System or from the User Variable.
  10. Add the path of the phantomjs/bin folder to the Path Environment Variable.
  11. Open the command prompt.
  12. Type the command "phantomjs --version".
  13. Successful Installation will show the version number of phantomjs.
Install PhantomJS Command Prompt


Now, it’s time to write a simple code to print the HTTP Status Code of a web page.

  1. Start your favorite editor and start writing this code.
  2. Save the file as “name.js”. It is mandatory to save the file with .js extension.

Code:


Let’s discuss the code in a bit detail. Here I am querying a web page www.frugaltesting.com. What I am doing is printing the title of 4 different pages of the main website and simultaneously printing the HTTP Status Code of the pages.

  1. I have initialized the baseUrl variable with the website Url.
  2. Links[] array specifies the part of links of the sub pages that will be appended to the baseUrl in order to generate the complete Url, that will be used to open the page.
  3. Next, we have created a new Casper instance.
  4. Initialized i=0 to use as index for the links[] array.
  5. Variable nTimes hold the length of the array links. For this case, nTimes=4 since links[] array has 4 items in it.
  6. Casper instance is then used to start the loop using repeat() function.
  7. Use casper instance to open the url using the thenOpen() function.
  8. this.echo() is used to print the title and HTTP Status Code of the page that is loaded.
  9. casper.run() is a very important function to run the whole thing. Without this function js file won’t be executed.

If you see the output below, you will notice that Page Title and HTTP Status Code 200 is printed. HTTP Status Code 200 means action requested by the client was received, understood and accepted.

Output of casper.run in Command Prompt


With this, we are done with the basic code for CasperJS. Go ahead and feel free to experiment with all the Modules available in CasperJS and try all the functions.

Rupesh Garg
Rupesh Garg
CEO and Chief Architect
Our blog

Latest blog posts

Discover the latest in software testing: expert analysis, innovative strategies, and industry forecasts
Software Testing

Top 12 Software testing myths debunked

Rupesh Garg
Rupesh Garg
May 8, 2024
5 min read
Software Testing
Testing Tools

Exploring Software Testing with Selenium Framework

Rupesh Garg
Rupesh Garg
May 6, 2024
5 min read
Software Testing
Testing Tools

Exploring Software Testing with the Right CI/CD Toolset in 2024

Rupesh Garg
Rupesh Garg
May 6, 2024
5 min read