I have a selector type as
html app=‘chrome.exe’ omit:title=‘SEC*’
webctrl tag=‘INPUT’ name=‘company’ type=‘text’
I want to add condition as either name=‘company’ or ‘business name’… how can I do that
for ex: for this url: Business.CT.Gov - All Your Business Needs in One Place
has selector as
html app=‘chrome.exe’
webctrl tag=‘INPUT’ name=‘businessName’ type=‘text’
and this url: SEC.gov | EDGAR | Company Filings
has selector as
html app=‘chrome.exe’
webctrl tag=‘INPUT’ name=‘company’ type=‘text’
I want to run only one selector function with adding OR condition to name attribute…
