
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
protractor-extra
Advanced tools
Agumentations for objects exported from protractor (TypeScript v.3+ only)
Do not use until verion 1.x.x released
Helpers for protractor and augmentations for protractor ElementFinder. Work in progress so not yet documented well.
Requires Node.js >= v6 Requires TypeScript >= v3 Requires TypeScript >= v5 (tested only with v5.4.2)
$ npm i -S protractor-extra
import { element, by, ExpectedConditions, browser } from "protractor";
const userBtn = element( by.css('#user-btn') );
async function doSomething() {
let timeoutMs = config.clickbaleTimeout;
let failMessage = `Element "${userBtn.locator()}" not clickable in ${timeoutMs/1000}s.`;
await browser.wait(ExpectedConditions.elementToBeClickable(userBtn), timeoutMs, failMessage);
await userBtn.click();
}
const { elementByCss } = require("protractor-extra"); // to guarantee sync import
import { element, by } from "protractor";
// `default` or any other milliseconds number value may be used
const userBtn = elementByCss( '#user-btn', {waitClickableBeforeClick: 'default'} );
async function doSomething() {
await userBtn.click();
}
TODO when v 1.0.0 released
module
Class
descriptionClass:method
descriptionFunction
descriptionFAQs
Agumentations for objects exported from protractor (TypeScript v.3+ only)
We found that protractor-extra demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.