Recently delving into Selenium IDE, I am a beginner and looking for guidance.
The challenge at hand: How can I access values from an array generated by
execute script | var array1 = document.getElementsByClassName("Post"); return array1; | array1
Initially, I considered using a For each statement to retrieve the values
For each | ${array1} | iterator
echo | ${array1}[$iterator]
However, the syntax is not yielding the desired results as it seems to be skipping over. When echoing the array object itself, it simply returns [Object object], indicating that the array is being created correctly. How should I properly extract values from the Array?
I have been struggling to comprehend the syntax within the Selenium Chrome IDE. The lack of comprehensive documentation makes it even more challenging, especially since most resources pertain to older versions of the tool.