Ever since upgrading to UiPath 2019.7.0 when “spying” an element (sorry for the Blue Prism terminology) in Firefox (version 68.1 – 64-bit) with extension installed (version 9.0.6822)
the selector returns the follow tags (wnd, crtl):
<wnd app='firefox.exe' cls='MozillaWindowClass' title='Mozilla Firefox' />
<ctrl name='Mozilla Firefox' role='application' />
<ctrl idx='1' name='New Tab' role='document' />
<ctrl name='@amazon Open context menu for @amazon' role='list item' />
<ctrl name='@amazon' role='link' />
<ctrl name='@amazon' role='editable text' />
or at times it returns uia tags:
<wnd app='firefox.exe' cls='MozillaWindowClass' title='Mozilla Firefox' />
<uia role='group' />
<uia idx='1' role='list item' />
<uia name='@amazon' role='edit' />
Instead of the html tags I was getting before the upgrade:
<html app='firefox.exe' cls='MozillaWindowClass' title='Mozilla Firefox' />
<webctrl idx='1' role='list item' />
<webctrl name='@amazon' role='edit' />
It seems the element is “spyed” as a Win32 element and not an HTML element.
In addition, I am unable to select any element in Chrome. It returns the global html tag:
<html app='chrome.exe' title='New Tab' />
even though I have the Chrome extension installed (version 9.0.6821)
Internet Explore works great; returning HTML tags.
Any ideas why I’m not getting HTML tags returned? (The site I need to run an automation against requires either Firefox or Chrome - IE and Edge are not an option)