Not sure if I am referencing correctly or if Javascript is my cause. Here is the code HTML code.
<div id="Invest">
<script type="text/javascript" src="js/functions/scripts.js"></script>
<div class="content-block">
<div class="col span-24">
<div class="col span-11 right-divider">
<p>
<label>YYYYYYYY:</label>
<span class="value">XXXXXX</span>
<label>YYYYYYYY:</label>
<span class="value">XXXXXX</span>
<label>YYYYYYYY:</label>
<span class="value">XXXXXX</span>
<label>YYYYYYYY:</label>
<span class="value">XXXXXX</span>
<label>YYYYYYYY:</label>
<span class="value">XXXXXX</span>
</p>
</div>
When I go to reference the ID tag name, with
IE.Document.getElementsByID("Invest").getElementsByClassName("value")(2).value
it doesn't work. States object does not support method or property. .innertext .text does not work either. How should I reference the value?
Thanks much guys.
Bookmarks