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
/** * Use this method in order to get a reference to element in the shadow root of a web component * @public * @param {String} refName Defines the name of the stable DOM ref */getStableDomRef(refName){returnthis.getDomRef().querySelector(`[data-ui5-stable=${refName}]`);}
in UI5Element.js. Example usage: data-ui5-stable="{{this.stableDomRef}}"
Add stable IDs to all relevant parts of the components so that tests can easily access them without the risk of breaking after a refactoring. Document all stable IDs for each component.
The text was updated successfully, but these errors were encountered:
We already have:
in
UI5Element.js
. Example usage:data-ui5-stable="{{this.stableDomRef}}"
Add stable IDs to all relevant parts of the components so that tests can easily access them without the risk of breaking after a refactoring. Document all stable IDs for each component.
The text was updated successfully, but these errors were encountered: