18 January 2026:


This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.



Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.

How to identify objects without popup prefix

lshankar_mcalshankar_mca Members
edited November -1 in Sahi - Open Source
Hi Narayan,

I have a issue.

I am working on Lawson ERP application. Here i am getting one issue with the popup.

Previously all the objects which are in the popup window are identified by without popup prefix.
But now the objects are identifying with the popup prefix. I dont want to sahi to identify with the popup prefix. How to ignore popup prefix.


Previous script : browser.button("Detail Profile").click();
Current Script: browser.popup("000000000000052").button("Detail Profile").click();

Please help me how to sahi identify popup window elements without the popup prefix.

Regards,
Shankar L

Comments

  • Hi Shankar L,

    Use this:

    Browser popupWin = browser.popup("000000000000052");
    popupWin.button("Detail Profile").click();

    Check if this solves your issue.

    Regards
    Sumitra
Sign In or Register to comment.