After clicking on Show Report button, the below interface loads on the same page/same link.
I want to click on the Excel icon highlighted below.
I am using a Click activity to do the same once Show Report is clicked.
However, the web-page varies in duration and sometimes takes too long to load the excel icon, so my Click activity fails.
How do I make it dynamic so that the program automatically clicks Excel icon once the page is loaded. Delay activity does not help as the page times out when taking too long to load.
You can use the delay activity or the option is use the Element exist activity to specifying the particular element. After element will appear then use the Boolean variable in if condition and put the Click activity into the ‘Then’ sectionfor further automation process
I have used element exist and element appear as well. While both of them do detect the element, the click activity after the detection does not click on the Excel icon.
I have increase timeout also, but it does not work.
My guess is that since the page url is same on both the pages given in the screenshot, so maybe the excel icon loads in the background.
I have used element exist and element appear as well. While both of them do detect the element, the click activity after the detection does not click on the Excel icon.
I have increase timeout also, but it does not work.
My guess is that since the page url is same on both the pages given in the screenshot, so maybe the excel icon loads in the background and the program just clicks on the place of Excel icon even when it hasnt appeared on the page.