Hey
I have problem with Set Value for control slider on webside.
Anyone have any idea for a solution?
I tried but it doesn't work.
Local $Strength = _IEGetObjById($oIE_Strona, "strength_value")
Local $oText = _IEFormElementGetObjByName($Strength, "valuee")
_IEFormElementSetValue($oText, "6")
or
_IENavigate ($oIE_Strona, "https://guantanamo.prisonwarsonline.com/gym/")
Local $oDiv = $oIE_Strona.Document.GetElementByID("strength_value")
Local $oAttribute = $oDiv.getAttribute("valuee")
If IsObj ( $oAttribute ) Then
$oAttribute.value = "6"
EndIf
Best Regards