ContributionsMost RecentMost LikesSolutionsRe: Chrome Widget in an Electron application Thanks Justin, enabling MSAA worked like a charm! Re: Chrome Widget in an Electron application Hi Justin/Sonya, I did use shift+Ctrl+A to identify the drop down menu. With that I see Window("Chrome_WidgetWin_2", "", 2) in Name. The entire drop down menu is recognized this way and I cant recognize anything beyond that. The drop down menu displays few values and I am supposed to read it using Automation which I am unable to do. Chrome Widget in an Electron application Hi, My application is an Electron application and it has a small tab-menu extension (there is a down arrow and when clicked expands as a menu). Until the Down arrow I am able to recognize as a part of my electron application but the menu which is displayed (after clicking on the down arrow) is not getting recognized. When I spy the menu it shows Window("Chrome_WidgetWin_2", "", 1) in the Name. Please help me identify the chrome widget. Note: Already Web and Desktop installation are available in my Test Complete. SolvedRe: Capturing Pseudo Elements Hi Tanya, Thanks for the reply. I figured out the solution myself which is pasted below. //object is the node inside which pseudo element is available var window = object.ownerDocument.defaultView; var style = window.getComputedStyle(object,":after"); var computedStyle = style["content"]; Capturing Pseudo Elements Hi Team, Is there a way to capture Pseudo elements using TestComplete? I have '::after' in my code and I have to capture it to read the Computed Style of it. Now, how do I capture ::after ? SolvedRe: Edited cell turns to a different color, how to automate this? Thanks!! That worked like a charm! Edited cell turns to a different color, how to automate this? Hi, I am working on an electron application. I have a cell which when edited turns green(bg color) colour for 3 seconds and goes back to original bg colour which is black. How do I automate this scenario using Test Complete. Solved