I'm having an issue of selecting the content I want to store as a string, as the data has the same div class name and there is no set ID to use instead.
I'm aware of the first and last operator in ruby, but is there anyway to select the options in between?
So for example
<html>
<body>
<div class="example">1111</div>
<div class="example">2222</div>
<div class="example">3333</div>
<div class="example">4444</div>
<div class="example">5555</div>
</body>
</html>
How can I get ruby to select the 4th class of the same class name, so I can store 4444 as my string?