Local $jQuery = browser_getJQuery($oIe)
If Not @error Then
$oElement = $jQuery('a.dropdown-toggle :contains("Опции")').get(0)
If IsObj($oElement) Then
MsgBox(0, 'Элемент', $oElement.outerHtml)
Else
MsgBox(0, '', 'Элемент не найден')
EndIf
Else
MsgBox(0, '', 'jQuery не найден')
EndIf
Func browser_getJQuery($oIe)
If Not IsObj($oIe) Then Return SetError(1, '1. $oIe не объект', False)
Local $js = $oIe.document.createElement('script')
$js.text = 'document.jQuery = jQuery;'
$oIe.document.body.appendChild($js)
$oIe.document.body.removeChild($js)
Local $jQuery = $oIe.document.jQuery
If @error Or Not StringInStr($jQuery(), 'function') Then
Return SetError(2, '2. jQuery не найден', False)
EndIf
Return $jQuery
EndFunc ;==>browser_getJQuery