How would I get multiple items that have the same class and input them into an array in UiPath.
Example:
<div class="folder" id=1>
Folder A
</div>
<div class="folder" id=1>
Folder B
</div>
<div class="folder" id=1>
Folder C
</div>
<div class="folder" id=1>
Folder D
</div>
<div class="folder" id=1>
Folder E
</div>
The bot should then put these folders in an array with values:
Folder A
Folder B
Folder C
Folder D
Folder E