Hi all i too have a mouse down case as shown below, Help out to perform click operation on highlighted object in html tree
#include <IE.au3>
#include <Array.au3>
Local $oIE = _IECreate("http://pass-ssi-a350.eu.airbus.corp:8020/D850/app/", 1)
_IELoadWait($oIE)
Local $oSearch, $oSubmit
Local $sSearch = InputBox("DS no to search","enter DS no","")
$oSearch= _IEGetObjByName($oIE,"gloabalSearchField")
$oSubmit=_IEGetObjById($oIE,"ext-gen29")
$oSearch.value = $sSearch
_IEAction($oSubmit, "click")
_IELoadWait($oIE)
Sleep(3000)
_IELinkClickByText($oIE,$sSearch)
Sleep(3000)
$odiv=_IEGetObjById($oIE,"infoPagemainInfoPagePanel")
$oform=_IEFormGetObjByName($odiv,"mainform")
$odiv1=_IEGetObjById($oform,"infoPageinfoPanelID")
$odiv2=_IEGetObjById($odiv1,"infoPageinfoPanelID__infoPage_myTab_object_partContentTab")
$odiv2.fireEvent("onmousedown")
_IEAction($odiv2, "click")
html tree in website is
Java click even code is
task;fn=fn||o.fn;scope=scope||o.scope;if(!el)throw'Error listening for "'+ename+'". Element "'+element+"\" doesn't exist.";function h(e){if(!Ext)return;e=Ext.EventObject.setEvent(e);var t;if(o.delegate){if(!(t=e.getTarget(o.delegate,el)))return}else t=e.target;if(o.stopEvent)e.stopEvent();if(o.preventDefault)e.preventDefault();if(o.stopPropagation)e.stopPropagation();if(o.normalized)e=e.browserEvent;fn.call(scope||el,e,t,o)}if(o.target)h=createTargeted(h,o);if(o.delay)h=createDelayed(h,o,fn);if(o.single)h=
Webpage UI image: i want to activate the third tab (object id : infoPageinfoPanelID__infoPage_myTab_object_partContentTab)