I have to update a text area but the text area name could be either Work notes or Comments. Have a checkbox where we could toggle between these two
Problem is I need to update only Work notes and I cant find a selector different apart from aaname. If one aaname =Work notes is used, then it throws error if checkbox is selected for Comments
Hi @Teenu
you can use GET ATTRIBUTE activityand make a selection on that element
and this activity will give us the value of a particular attribute, say aaname of a element as a string variable
–then we can use a if condition and check whether the output of the above activity is Worknotes or comments, based on which we can update
Cheers