18 January 2026:
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
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.
Search Pop up window selection showing error
Hi,
There is one field in my application with browse icon, by clicking this icon one popup window appears with list of names and selected name will display in that field.
While recording, script is generated for that field as:
_click(_image(36));
_popup("newWin1234949411453")._click(_link("Arun Gangotri"));
While Playbacking this script at this line it is shown as :
_click(_image(36));
'null' is null or not an object
Can anyone provide solution for this.
There is one field in my application with browse icon, by clicking this icon one popup window appears with list of names and selected name will display in that field.
While recording, script is generated for that field as:
_click(_image(36));
_popup("newWin1234949411453")._click(_link("Arun Gangotri"));
While Playbacking this script at this line it is shown as :
_click(_image(36));
'null' is null or not an object
Can anyone provide solution for this.
Comments
Check if the popup name is changing dynamically. I think that the numeric part must be dynamic. In that case you may have to use some other way to identify it eg. using regular expressions.
Regards,
Pankaj.
I solved this issue.