Hi There.
I am not sure if this is the right place for the question of if it should be at the Dev forum, or in the framework.
I have created a Robotframe resource that uses Selenium to go to a website, login, navigate to a button, and click it.
When the button is clicked, it brings up a print dialog, why I have a python extension to handle it.
However, at the click element command the code stops moving along and eventually I get the following time-out message:
TimeoutException: Message: Timeout loading page after 300000ms
The Dialog is triggered through a small code in JS that is called after clicking on the button. It seems to be there to handle some really old code:
function ImprimirFrame(Opcao){
var pr = (window.print) ? 1 : 0;
if (pr){ // NS4, IE5
parent.Frame_Principal.focus()
parent.Frame_Principal.print()
}
else
alert("O seu browser não suporta esta função");
};
Any ideas where to go to in order to figure why the script execution is being tied up there?
Thanks in advance
Andre