-
For example, get the text content of each element in a list. I have tried Browserflow and can use |
Beta Was this translation helpful? Give feedback.
Answered by
Kholid060
Dec 13, 2021
Replies: 1 comment 1 reply
-
Automa doesn't have a feature like Or you can use the javascript code block and write the code like below const elements = document.querySelectorAll('.selector-here');
const textContent = Array.from(elements).map((element) => element.innerText);
automaNextBlock({ column: textContent }) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
isaced
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Automa doesn't have a feature like
loop-elements
. But if you want to get the text content from multiple elements, you can check themultiple
checkbox like the image below. It will get all the text content from all the elements that match the selector.Or you can use the javascript code block and write the code like below