Does anyone have a workflow I can view for changing movies in a movie review website? I would like to see how the workflow works and what tools to use. thank you
Refer this in detail tutorial on this.
Hi @xspunky,
Could you be more specific as to which movie review website are you trying to automate here?
But here’s a brief idea as to how you can change movies in a movie review website assuming 2 general scenarios:
- You have a NEXT button to change the current movie on the screen.
- You have a Text field, where you can type in the movies you’d like to review you’d like to review.
Requirements:
- For both cases you’ll need the UiPath.UIAutomation.Activities to interact with the website interface.
Steps:
- Next Button
- You would need to use the Click Activity to click the Next Button. Make sure you have selected the choose descriptors that are stable and don’t change frequently, to avoid automation failures.
- Text Field
- You would need to use the Type Into Activity to type the particular text into the field. Similar to the click button mentioned above make sure you have selected the descriptors that are stable and don’t change frequently, to avoid automation failures.
If you could provide more details, a workflow can be made around the same to help solve your query
Also Note: If you’re looking to automate established Movie Critic/Review Sites, do check their terms and Conditions as some of them prohibit the use of automation/bots on their websites.
Hope this helps!