You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@agnos-ui/page-objects

Package Overview
Dependencies
Maintainers
3
Versions
38
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.9.0
latest
Source
npmnpm
Version published
Maintainers
3
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

e2e

FAQs

Package last updated on 10 Jun 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