Need to close and open IE browser

Hi Team,

I need to close and open a new IE browser during the automation flow.
For closing the browser I did it with window popup handler.
But I am unable to open a new browser then. I tried with java script as below but it is not working
window.open(’’,’_blank’,’’);
window.open(’’,’_self’,’’);
window.open(’’,’_blank’,’’);

Can you please suggest on this.

Thanks,
Shruti

Hi,

If you close the main window on which automation is happening and is in context then automation will fail. Application will get reset on its own when it receives the request in EVA bot

Regards,
Amit Anand

I Tried this way but after closing the window I am getting below error:

“Failed to attached to IE window with hnd 6097418”

I want to explicitly close the browser and open new one with same login page again rather than just resetting

HI,

Try implementing your use case in such a way such that user logs off and is redirected back to login page. Closing browser will fail your automation

Regards,
Amit Anand

Hi @shrutin

In the latest enterprise versions of AssistEdge RPA, there are activities which can close your browser and relaunch them.

You can refer the below knowledge base links to understand more about them.

Close Application

Launch and SignIn Application

Thanks . This helps.