🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@agnos-ui/page-objects

Package Overview
Dependencies
Maintainers
3
Versions
36
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.8.1
latest
Source
npm
Version published
Weekly downloads
34
-39.29%
Maintainers
3
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

e2e

FAQs

Package last updated on 02 May 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