2 weeks ago
I am building a process that downloads an excel file full of data however, the download button on the Rigour page is recognised as an “svg” element type. Due to
this, Blue Prism can’t press the button required to download the file. I am
unsure how to make Blue Prism Application Modeler recognise this as a button to proceed
with downloading the report
2 weeks ago
Hi @rebeccabowe
Have you tried spying the download button using UI Automation Mode?
Best Regards,
Sayeed Bin Abdullah
Monday
yes, that got it to work and I have now ran the process several times since it recognises it however when I run the process in control room it does not recognise the element in the application modeller and terminates.
Tuesday
Please check with below steps,
1. As the run speed through control room will slightly be faster than that in debug mode so I would suggest you to add a wait stage before clicking the download button.
2. As shown in below example uncheck Attributes for which the value is blank.
3. Make sure Match Index attribute is checked.
Best Regards,
Sayeed Bin Abdullah
Tuesday
I have added a wait stage before clicking the download button and checked all the attributes like above and it worked for 5 times in the control room - I then relaunched blue prism and tried it again and the same error occurred :
ERROR: Internal : Failed to perform step 1 in Navigate Stage 'Click Export' on page 'Navigating Rigour' - No element matched the query terms |
I then went back into the object and application modeller and it did not recognise the element anymore.
Tuesday
Dear @rebeccabowe ,
Have tried using the Xpath or SCC selector code from the back end application?
For example
Highlight your filed , take the respective filed code and build the Xpath or CSS selector.
If your not aware of how to identify the Xpath or CSS selectors I'm happy to help you here.
Tuesday
I am unsure how to do that - would you please provide steps on how to approach this? Thank you!
Tuesday - last edited Tuesday
This may happen because of slow loading of application, please add a dynamic wait of 60 seconds before clicking the button so that the element is loaded successfully.
Alternatively you can also try below option
Uncheck Parent UIA Class Name attribute
Check UIA Class Name attribute
Best Regards,
Sayeed Bin Abdullah
Tuesday
Dear @rebeccabowe
Could you please share the list of attributes that your getting in the Apllication Modeller after spying the using Browse Mode?
Tuesday - last edited Tuesday
Hi @rebeccabowe
As @faheemsd said
For example your svg is maybe a child of a div element and maybe if we tell blue prism via xpath to click on that div (or others elements) it will work
Please share with us your html code (do inspect) and then we can help you