Below is an example running against our test site, getting and printing out the href attribute of the first a element on the homepage.
That just happens to be our logo, which links right back to our homepage, and therefore will have an href value equal to the URL we navigate to using page.goto():
Run in Checkly
As an alternative, it is also possible to retrieve an ElementHandle and then retrieve a property value from it. Following is an example printing the href value of the first a element of our homepage:
Run in Checkly
The innerText property is often used in tests to assert that some element on the page contains the expected text.
Scraping images from a page is also possible. For example, we can easily get the logo of our test website and save it as a file:
Run in Checkly
We are using axios to make a GET request against the source URL of the image. The response body will contain the image itself, which can be written to a file using fs.
Once we start scraping more information, we might want to have it stored in a standard format for later use. Let’s gather the title, author and price from each book that appears on the home page of our test site:
The code for that could look like this:
Run in Checkly
The resulting books.json file will look like the following: