#include <IE.au3>
$oIE = _IECreate("http://autoit-script.ru/",1)
$oTags = _IETagNameGetCollection ($oIE, "span")
For $Tag In $oTags
If $Tag.innertext == " Мои закладки" Then ExitLoop
Next
; Get coordinates and dimensions of the textarea
$iScreenX = _IEPropertyGet($Tag, "screenx")
$iScreenY = _IEPropertyGet($Tag, "screeny")
$iBrowserX = _IEPropertyGet($Tag, "browserx")
$iBrowserY = _IEPropertyGet($Tag, "browserY")
$iWidth = _IEPropertyGet($Tag, "width")
$iHeight = _IEPropertyGet($Tag, "height")
; Outline the textarea with the mouse, come to rest in the center
MouseMove($iScreenX, $iScreenY)
MouseMove($iScreenX + $iWidth, $iScreenY)
MouseMove($iScreenX + $iWidth, $iScreenY + $iHeight)
MouseMove($iScreenX, $iScreenY + $iHeight)
MouseMove($iScreenX, $iScreenY)
MouseMove($iScreenX + $iWidth/2, $iScreenY + $iHeight/2)