You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need more user friendly commands which perform the equivalent of elementIdElement() and elementsIdElement but work more like findElement() and findElements(), accepting the same type of arguments.
constformElement=element('form');// or element(by.css('form'));constelement=awaitbrowser.findElementFromElement(formElement,'input');console.log('element',element.getId());
I'm trying to implement exactly the same at least as a custom Nightwatch command, but faced a very strange issue #4273 - any ideas about why the issue happens and how to workaround it?
We need more user friendly commands which perform the equivalent of
elementIdElement()
andelementsIdElement
but work more likefindElement()
andfindElements()
, accepting the same type of arguments.syntax findElementFromElement() (find single):
syntax findElementsFromElement() (find multiple):
The text was updated successfully, but these errors were encountered: