Getting Started

When you launch Puppetry the very first time you are expected to see the welcome page:

At this stage we cannot do much, only to open an existing project or create one:

Let's create our first project intended to test responsive design on the landing page or our imaginary ACME forum application.

So we enter project name, browse for location and provide a name for the first suite. After pressing submit we end up on the suite page:

Let's add a few targets:

Here we identify main menu container, which is visible on desktop, but behind the burger menu on mobile. We define teaser target (the first matching the selector), which also visible only on desktop. Eventually we specify mobile menu container that on the contrary shows up on mobile, but hidden on desktop.

Now we switch to the Test Cases tab:

Let's add the first group "Landing page":

Under the group record we get a new form to enter test case name. So add one:

Let's add our first command into the test case. So we click on Add a command/assertion button:

That brings us to Edit Command/Assertion modal window:

Our goal is to ensure desktop-like screen size. So we select page target and setViewport method. We set screen width 1440 and height 900:

Many of test steps have additional options collapsed under Advanced Options link. E.g:

Here we don't need to change them. We click on Save button and get back to test case editing, where we click on Add a command/assertion button again to set navigation URL:

Now we have to assert that desktop menu and teasers are visible in this test case, but mobile menu not. So we click Add a command/assertion button and select a target identifier corresponding to mobile menu container:

Next we need assertVisible method, so we focus on method input and start typing "assert":

The list of options adjust according to search keyword, so we can easily find the required method.

We take "available on the page and observable" option in the select "The target is". This means the element available in page DOM and can be visually located. We save the changes. Similarly we create assertions for desktop menu and teaser, but take option "available, but NOT observable". Finally we add command page.screenshot and our first test case is ready:

I would suggest now to run the tests and check if everything is ok. So we press F6 and get the following modal window:

Here we just click on Run button.

As we run it Puppetry opens panel Test report with test results:

It says everything is fine. If we click on the screenshot thumbnail it gets open in the viewer.

Alternatively we can click on Download link, which appears when we hover the thumbnail.

Then the screenshot will be open with default viewer in your hosting OS.

Let's now go further and create a new test case named on iPhone 8 mobile menu displayed. We start it with the command to emulate iPhone 8 device:

Next we need a command to visit the landing page and assertions from the previous case. Let's just copy/paste them. We click on the every command with Shift pressed to select records.

Then right-click on the selection and pick the Copy option in the context-menu.

Now we focus the destination - page.emulate command of the second test case and right-click again:

We have just copied, bu the are still addressing the desktop view and need to be adjusted for iPhone device. But let's see what happens if we run the tests with failing assertions. So we press F6 and observer the test report:

So you see it warns us about the failure and provides detailed information why the assertion failed.

If we switch to suite tab (rwd.json) we see that failed assertion record is highlighted:

When working with test cases (especially debugging) sometimes you will want to temporarily disable some test steps and run only the ones you currently focused on. That can be done from the context menu (right-click). The disabled test steps will be also highlighted:

Last updated