Comment in child window

i click into a add comment box with ui path and a new windown opens i have used a new open browser tool for it to comment in the new popped up window however it takes me back to the earlier page

@arnab.a.roy,

Use Use Application/Browser activity instead of Open Browser for the child window.
Enable Attach to live element or indicate the new popup window directly to capture its selector.
Perform actions inside this scope so UiPath targets the child window without returning to the parent.

files = (From f In Directory.GetFiles(folderPath, “abc_*.xlsx”)
Let name = Path.GetFileNameWithoutExtension(f)
Let parts = name.Split("_"c)
Let datePart = DateTime.ParseExact(parts(1), “yyyyMMdd”, System.Globalization.CultureInfo.InvariantCulture)
Let numPart = CInt(parts(2))
Order By numPart
Select f).ToArray()