I am trying to do automation on Siebel Web Client using Webrecorder. I can successfully log in but when i try to click on the Search button which looks like a binocular image and resides within a Table Cell, webrecorder does not record that script.
DOM Model looks like this
Code: Select all
BODY class="toolbar" leftMargin="0" topMargin="0" marginheight="0" marginwidth="0"
TABLE border="0" cellSpacing="0" cellPadding="0" width="100%"
TBODY
TR
TD noWrap SPAN id="s_5" TABLE style="HEIGHT: 27px" TBODY TR
TD id="s_5_out0" onmouseup="Top()._swescript.SWEHandleTBEvent(4,0,event)" class="TBflat4" onmouseover="Top()._swescript.SWEHandleTBEvent(4,0,event)" onmouseout="Top()._swescript.SWEHandleTBEvent(4,0,event)" onmousedown="Top()._swescript.SWEHandleTBEvent(4,0,event)" onclick="Top()._swescript.SWEHandleTBEvent(4,0,event)" noWrap
IMG id="s_5_in0" alt="Search" align="absMiddle" src="https://XXXXXX/callcenter_enu/images/icon_search.gif" /
Tagname = IMG and INDEX = 11
Code: Select all
IE_ClickTag>%IE[0]%,_sweviewbar,IMG,11,r
I have also tried using src value and Table Index
Code: Select all
Let>FrameName={"sweviewbar"}
Let>FormName={""}
Let>TagValue={"http://XXXX/callcenter_enu/images/icon_search.gif"}
IE_ClickTag>%IE[0]%,str:FrameName,str:FormName,IMG,SRC,str:TagValue,r
Anyone got any Ideas?