protractor-element-extend
protractor-element-extend copied to clipboard
Module, that helps you to extend ElementFinder in your own custom fragments
Bumps [minimist](https://github.com/minimistjs/minimist) from 0.0.10 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...
Bumps [jszip](https://github.com/Stuk/jszip) from 3.1.5 to 3.10.1. Changelog Sourced from jszip's changelog. v3.10.1 2022-08-02 Add sponsorship files. If you appreciate the time spent maintaining JSZip then I would really appreciate your...
Just example: ```html ... ``` ```javascript class MyArrayOfComponents extends BaseArrayFragment { // No params in constructor: constructor() { super($$('components component'), MyComponent) } getComponentsWithName() { return this.filter(component => component.hasName()) } }...
Hi! I have tried to extend ElemetFinder and override it's "click" method, but when i call element.click() in my test scenario default ElementFinder click() event is fired. Here is the...
Investigate possibility to print nice locators for fragments on error Problem: On attempt to use something like this: $('div').$('.helloworld') error will be printed something like 'element ".helloworld" is not found'...
For example: ``` class Select extends BaseFragment { constructor(element) { super(element); } selectOption(text) { this.element(by.cssContainingText('option', text)).click(); } getSelectedText() { // NOTE: Apparently you can't use the shorthand element locators ($...