Home | Categories | How-to-Articles | Command Reference | Examples | Troubleshooting | Cognillo.com
Use this page to find example workflows for Aura Digital Workforce.
Details
This example will prompt the user for an Excel file. Then loop through the rows and enter them into a website. This website has controls that move every time the page is refreshed, but not to worry, Aura can handle this easily!
//This folder is in My Documents\Digital Workforce\Aura Digital Worker\Assets\ //This path is used to locate files and folders or you can also specify a full path below $excelFile = "" $folder = "Test Data" $rpasite = "http://www.rpachallenge.com/" navigate to $rpasite foreach ($excelFile in $folder) { foreach ($row in $excelFile) { //Variables in foreach loops are auto generated //Use inspector to get variable names, //they will be the column headers without spaces and special characters switch to $rpasite Enter $_FirstName as "First Name" -forcedetection Enter $_LastName as "Last Name" Enter $_PhoneNumber as "Phone Number" Enter $_CompanyName as "Company Name" Enter $_RoleInCompany as "Role in Company" Enter $_Email as "Email" Enter $_Address as "Address" Click "Submit" button //We are finished inputting values, swith to Excel application/file to update a value switch to $excelFile Set value "Is Completed" as "Yes" } //This will add the result to be sent back to the user to open once workflow auttomation is complete. //We could also use copy or move commands to copy files to another location //The files are stored on Aura Worker if needed Add Result $excelFile }
Resources
Related Articles
Filter by label
There are no items with the selected labels at this time.
Search
Can't find what you’re looking for? Create a Support Ticket or Chat Live (click 'Chat with a Representative')
NOTE: Our User Guides (MS Word) provide help that may not be found in the Knowledge Center articles.