@fkui/vue 6.34.0 → 6.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -403,7 +403,7 @@ var FExpandablePanelPageObject = class {
403
403
  * @param selector - the root of the expandablepanel, usually `<div class="expandable-panel">...</div>`.
404
404
  */
405
405
  constructor(selector) {
406
- this.selector = selector;
406
+ this.selector = `.expandable-panel:has(${selector})`;
407
407
  this.el = () => cy.get(this.selector);
408
408
  this.expandCollapseIcon = () => cy.get(`${this.selector} .expandable-panel__icon`);
409
409
  this.header = () => cy.get(`${this.selector} .expandable-panel__heading button`);