diff --git a/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts b/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts index 29baee5523..dd646722a5 100644 --- a/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts +++ b/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts @@ -9,8 +9,8 @@ class HidePopupPanel extends EventEmitter { return localStorage.getItem('did_show_popup_panel') }, [], function (result) { if (!result.value) { - browser.waitForElementVisible('*[data-id="aiStatusButton"]') - .click('*[data-id="aiStatusButton"]') + browser.waitForElementVisible('*[data-id="popupPanelToggle"]') + .click('*[data-id="popupPanelToggle"]') } done() }) diff --git a/apps/remix-ide/src/app/components/popup-panel.tsx b/apps/remix-ide/src/app/components/popup-panel.tsx index 4ebc8a77bd..5d27c38828 100644 --- a/apps/remix-ide/src/app/components/popup-panel.tsx +++ b/apps/remix-ide/src/app/components/popup-panel.tsx @@ -104,7 +104,7 @@ export class PopupPanel extends AbstractPanel {