Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@checkly/playwright-helpers

Package Overview
Dependencies
Maintainers
10
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@checkly/playwright-helpers

Checkly Playwright helpers

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
10
Created
Source

Checkly Playwright Helpers

@checkly/playwright-helpers is included in runtime 2023.09 and later, this library is only meant to be used within Checkly Multistep and Browser checks.

Installation

npm i @checkly/playwright-helpers

Methods

markCheckAsDegraded

Marks a check as degraded if:

  • The check is failing with soft assertions, or
  • The check has no failures
import { markCheckAsDegraded } from '@checkly/playwright-helpers'

test("Checkly Multistep", async ({ request }) => {
  test.step('Google', () => {
    const response = await request.get('https://google.com')
    const data = await response.json()

    if (data.foo.length > 100) {
      markCheckAsDegraded('Foo is too long.')
    }
  })
})
Arguments
  • reason String (optional). Logged when the method is called. Used to identify which method caused the degradation.

getAPIResponseTime

Gets the request response time.

import { getAPIResponseTime } from '@checkly/playwright-helpers'

test("Checkly Multistep", async ({ request }) => {
  test.step('Google', () => {
    const response = await request.get('https://google.com')

    console.log(getAPIResponseTime(response))
  })
})
Arguments
  • response APIResponse (required). A response from a Playwright API request.

Support

Feel free to reach out to our customer support if you have any questions support@checklyhq.com.

FAQs

Package last updated on 28 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc