@fkui/vue 6.34.0 → 6.34.1

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.
@@ -482,7 +482,7 @@ var FExpandablePanelPageObject = class {
482
482
  * @param selector - the root of the expandablepanel, usually `<div class="expandable-panel">...</div>`.
483
483
  */
484
484
  constructor(selector) {
485
- this.selector = selector;
485
+ this.selector = `.expandable-panel:has(${selector})`;
486
486
  this.el = () => cy.get(this.selector);
487
487
  this.expandCollapseIcon = () => cy.get(`${this.selector} .expandable-panel__icon`);
488
488
  this.header = () => cy.get(`${this.selector} .expandable-panel__heading button`);