Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying PhantomJS Cookbook
  • Table Of Contents Toc
  • Feedback & Rating feedback
PhantomJS Cookbook

PhantomJS Cookbook

By : Friesel
4.2 (5)
close
close
PhantomJS Cookbook

PhantomJS Cookbook

4.2 (5)
By: Friesel

Overview of this book

A task-based guide that provides solutions to real-world test automation problems. This book is intended for web development professionals who want to integrate PhantomJS into their development and testing workflows. If you are a web developer looking to run automated unit tests while you work, or perhaps you are a QA engineer looking for a fast test automation utility, then this book is perfect for you. Some prior knowledge of JavaScript would be helpful.
Table of Contents (10 chapters)
close
close
9
Index

Creating a web page instance in PhantomJS with the webpage module

This recipe introduces the webpage module and demonstrates how to create an instance of a webpage object.

Getting ready

To run this recipe, we will simply create an instance of a webpage object; we can do this in the REPL.

Tip

See the Launching the PhantomJS REPL recipe in Chapter 1, Getting Started with PhantomJS, for more information about the REPL.

How to do it…

After entering the PhantomJS REPL, perform the following steps:

  1. Import the webpage module and assign it to a variable with that name, using the following command:
    phantomjs> var webpage = require('webpage');
    undefined
    
  2. Create an instance of a webpage object from the module, using the following command:
    phantomjs> var thePage = webpage.create();
    undefined
    
  3. Loop through the properties on the webpage instance and print them out, using the following command:
    phantomjs> for (var p in thePage) console.log(p);
    objectName
    title
    frameTitle
    content
    frameContent...
Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
PhantomJS Cookbook
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon