I am trying to write a script that brings me to a specific page directly.
In a normal circumstances, I need to go through the following:
- Open the homepage
- Select a button, initiate a pop-up
- login, accept this, blah, more navigations
- The page I want to be in
I have successfully downloaded the target page using php+curl, the problem is that it checks for parent.opener and parent.window.name in javascript.
What I tried: 1. modify the javascript to exclude the check, but if I navigate to other pages, the check comes back and force me out.
modify the values directly, like so
parent.window.name = something; parent.opener = stuff;
didn't work of course =/
Thanks for your input guys =)