Changes between Initial Version and Version 2 of Ticket #2972
- Timestamp:
- Mar 10, 2026, 8:53:57 PM (14 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2972
- Property Owner set to
- Property Status new → assigned
-
Ticket #2972 – Description
initial v2 2 2 It can be solved just adding a simple function as: 3 3 4 {{{ 4 {{{#!autoit lineno=1 marks=8,11-13 5 #include <IE.au3> 6 7 _Example() 8 9 Func _Example() 10 Local $oIE = _IECreate("www.autoitscript.com") 11 Local $oBody = $oIE.document.body 12 ConsoleWrite('! "Class" = ' & _IEAttributeGet($oBody, "class") & @CRLF) 13 EndFunc ;==>_Example 14 5 15 Func _IEAttributeGet($obj, $attr) 6 $obj.GetAttribute($attr) 7 EndFunc 16 Return $obj.GetAttribute($attr) 17 EndFunc ;==>_IEAttributeGet 18 8 19 }}}
