I googled and tried several differnt things (I'm not very skilled basicly cut and past).
This being the closest I think I came:
#include <IE.au3>
$oIE = _IECreate("The website")
$CurrentLevel = ""
$tags = $oIE.document.GetElementsByTagName("div")
For $tag in $tags
$class_value = $tag.GetAttribute("class")
If string($class_value) = "profileXpLevel" Then $CurrentLevel=IEBodyReadText($class_value)
MsgBox(0, "Level: ", $CurrentLevel)
ExitLoop
Next
The msgbox comes up empty.
It