protractor-element-extend icon indicating copy to clipboard operation
protractor-element-extend copied to clipboard

Module, that helps you to extend ElementFinder in your own custom fragments

Results 9 protractor-element-extend issues
Sort by recently updated
recently updated
newest added

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]...

dependencies

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...

dependencies

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...

dependencies

Just example: ```html ... ``` ```javascript class MyArrayOfComponents extends BaseArrayFragment { // No params in constructor: constructor() { super($$('components component'), MyComponent) } getComponentsWithName() { return this.filter(component => component.hasName()) } }...

bug

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...

bug

Create more usage examples and tricks

enhancement

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'...

enhancement

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 ($...

bug