How can I test the web page  which is opened by window.showModalDialog()
method using PAMIE?

There are two html pages:a.html and b.html.
[a.html]:
<input type="button" onClick='a();' value="button_a">
<script type="text/javascript">
<!--
function a(){
yin = window.showModalDialog("b.htm","hehe");
}
//-->
</script>

[b.html]:
<input type="button" value="button_b">

Firstly, I clicked button_a in a.html. The b.html is pop up. Now I expect to
click the button_b in b.html. How to do?Thanks
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to