Hello guys!
I'm trying to let a value of a stock exchange appear in a message box.
After struggling for quite some time, i figured out how to find the id and class in a webpage.
But i got stuck.. how can i grab the value and make it appear in the msgbox?
#include <IE.au3>
$oIE = _IEAttach("", "instance", 1)
$tags = $oIE.document.GetElementsByTagName("td")
For $tag in $tags
$id_value = $tag.id
If $id_value = "premium_exchange_stock_wood" Then
MsgBox(0, "found ", $id_value)
EndIf
Next
my code right now
I have added a picture to show what i'm trying to put out in the messagebox
Wheezer