I want to click a small tool size dialog box with a tooltip containing the contents of the "Delete Association". I have the following scripts:
strMenu_Body = menu.document.body;
strMenu_Body.style.backgroundColor = "#EFF6FD";
var strMenu_Text = "<TABLE Align=Center width=100% height=100% CellPadding=0 CellSpacing=0 Border=1 BorderColor=#A5BACE style=font-family:arial;font-size:12px;color:black;>"
if (type != "Flag") {
if (val.indexOf('s10001') > 0) {
if (document.all(val).iComponentType) {
if (document.all(val).iComponentType == "Recall")
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD align=center> <Font ID=RemoveAssociation onClick=parent.callParent('" + val + "','DELETE_ASSOCIATION') style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Delete Recall</Font></TD></TR>"
else
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD align=center> <Font ID=RemoveAssociation onClick=parent.callParent('" + val + "','DELETE_ASSOCIATION') style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Cancel Appointment</Font></TD></TR>"
}
else
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD align=center> <Font ID=RemoveAssociation onClick=parent.callParent('" + val + "','DELETE_ASSOCIATION') style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Delete Recall</Font></TD></TR>";
}
else if (val.indexOf('s20002') > 0) {
if (document.all("btn~~PatEducations20002").all("Comp_Heading").innerHTML.length > 20)
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD> <Font ID=RemoveAssociation onClick=parent.removePatientEducation(0); style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Remove Flag</Font></TD></TR>"
else
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD align=center> <Font ID=RemoveAssociation onClick=parent.removePatientEducation(1); style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Remove Association</Font></TD></TR>"
}
else
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD> <Font ID=RemoveAssociation onClick=parent.callParent('" + val + "','DELETE_ASSOCIATION') style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Remove Association</Font></TD></TR>"
}
else
strMenu_Text = strMenu_Text + "<TR HEIGHT=20 ID=traSch1 ><TD> <Font ID=RemoveAssociation onClick=parent.callParent('" + val + "','DELETE_FLAG_ASSOCIATION') style=cursor:hand onmouseover=javascript:this.style.color='red'; onmouseout=javascript:this.style.color='black';>Remove Flag</Font></TD></TR>"
strMenu_Text = strMenu_Text + "</TABLE>"
strMenu_Body.innerHTML = strMenu_Text
menu.show(intMenu_X, intMenu_Y, intMenu_Width, intMenu_Height, document.all("cmbFontName"))
}
`
I do not know how to click this dialog box. kind help. I am using java, selenium, IE 10, Win 8.
Also tell me how to flip elements with "onclick" attribute, for example onClick=parent.callParent('" + val + "','DELETE_ASSOCIATION'). Many thanks
source
share