Solution for web applications with duplicate window titles?

Hello Automates,

I have a situation where I am working on one web application, once I open that web application, I need to click on one button to open login window. I am able to click on that button, once that is done, the new window is being opened with same window title as previous one. I need to enter user and password in the newly opened window, but while indicating new window is not getting shown because of same window name. So, I have paused and opened that window and selected that target element. However, while running the bot, bot failed to enter username. Any idea how to work with this type of applications?

your help will be really appreciated!

Thanks

This is due to the properties selected

Mostly they have similar propertied but definitely not the same

You can check following

Make sure you are using Strict Selector and not fuzzy selector. See the properties of both the selectors and select those which makes them unique. Like - ID, AA NAme etc.

You can share the properties of the selector from Ui explorer and we can suggest you the properties that will make the selector unique

To view the details, Goto properties. Change the drop down from Fuzzy to Strict Selector and see if it is working fine. If not - Select the rounded button from below screenshot to view the properties and share here to analyze

@gopi.janjanam,

You can use another Use Application Browser under the existing one. After clicking on the button add Use application/Browser activity, indicate the newly opened browser window. Make sure to choose the right selectors which are not similar to the parent window. Inside it add your logic to enter user id password.

@gopi.janjanam

If window name and all properties are same then use idx='2' in second window selector

Cheers