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

@agnos-ui/page-objects

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agnos-ui/page-objects

Page objects to be used when testing AgnosUI-based applications with Playwright.

  • 0.7.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-84.54%
Maintainers
0
Weekly downloads
 
Created
Source

@agnos-ui/page-objects

npm

Page objects to be used when testing AgnosUI-based applications with Playwright.

Installation

npm install -D @agnos-ui/page-objects

Usage

Here is a sample test using the RatingPO:

import {expect, test} from '@playwright/test';
import {RatingPO} from '@agnos-ui/page-objects';

test(`Click on rating star`, async ({page}) => {
	const ratingPO = new RatingPO(page);
	await ratingPO.locatorRoot.waitFor();
	await ratingPO.locatorStar(4).click();
});

Keywords

FAQs

Package last updated on 09 Jan 2025

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