Есть кнопка, по нажатию на которую всплывает контекстное меню, смысл в том, чтобы нажать на один из элементов контекстного меню. Скриншот прилагаю.
Код:
Нажать нужно на "Export".
Пробовал вот так:
но не нажимается, хотя и ошибки тоже нету.
Код:
Код:
<div class="PPMenuItem PPC PPMacOS Released Hovered" id="ExportMenuItem" tabindex="null" dir="ltr" enabled="enabled">
<table border="0" cellspacing="0" cellpadding="0" class="PPMenuItemTable">
<tbody>
<tr>
<td class="PPMenuItemLeftPart">
<div style="background: url(Edd/PP/img/mainmenu.png) -224px -0px no-repeat;">
</div><div class="PPMenuIconSeparator">
</div>
</td>
<td class="PPMenuItemContentPart">Export</td>
<td class="PPMenuItemHotKey" disabled="disabled">
</td>
<td class="PPMenuItemRightPart">
<div class="PPMenuArrow">
</div>
</td>
</tr>
</tbody>
</table>
</div>
Пробовал вот так:
Код:
$oButtons = _IETagNameGetCollection($oIE, 'td')
For $oButton In $oButtons
If $oButton.classname == 'PPMenuItemContentPart' And $oButton.innertext == 'Export' Then
_IEAction($oButton, 'click')
_IELoadWait($oIE)
EndIf
Next
Sleep(2000)