Page 1 of 1

Noodle Scratcher

Posted: Tue Mar 09, 2010 8:16 am
by nirius
I just want to be able to cancel a login prompt that appears when connecting to a site through a password secured proxy

1) Using iMacros for Firefox, set your browser proxy to 64.79.209.238:36867

2) Run the following script:
URL GOTO=http://www.amazon.com
WAIT SECONDS=5

3) GOAL: Find a way to allow the script to complete without hanging on the login prompt!

Massive respect to the first person who cracks it. I can't.


Note: I put ONDIALOG POS=1 BUTTON=CLOSE before the URL GOTO line, to click the javascript popup that appears after the first unsuccessful login, but sometimes another login prompt just appears. Ideally you'll find a way to cancel the first login prompt. Thanks

Re: Noodle Scratcher

Posted: Tue Mar 09, 2010 8:27 am
by coolcocky
cant understand what are you trying to achieve

regards,

cool

Re: Noodle Scratcher

Posted: Tue Mar 09, 2010 9:55 am
by nirius
i just want to be able to cancel a login prompt that appears when connecting to a site through a password secured proxy

thanks

Re: Noodle Scratcher

Posted: Wed Mar 10, 2010 2:11 pm
by Daniel, Tech Support
Hello,

Have you tried the ONLOGIN command?

Re: Noodle Scratcher

Posted: Thu Mar 11, 2010 1:29 am
by nirius
Yes, but with what USER= PASSWORD= ? If I put it immediately before the URL GOTO call with no user/pass or an incorrect user/pass, then the login will fail and the prompt will reappear, along with the javascript dialog. If there's a parameter for ONLOGIN that I don't know about, i.e. hit the cancel button or close the prompt, I'd be very grateful to learn of it

Cheers

Nirius

Re: Noodle Scratcher

Posted: Tue Mar 23, 2010 1:49 pm
by Daniel, Tech Support
Hello,

This script works for me:

Code: Select all

PROXY ADDRESS=64.79.209.238:36867
SET !ERRORIGNORE YES
SET !TIMEOUT 1
URL GOTO=http://www.amazon.com
DS CMD=KEY X=564 Y=413 CONTENT={ENTER}
SET !ERRORIGNORE NO
SET !TIMEOUT 60
You can copy the DS line if the login window appears more than once.

Best regards,

Re: Noodle Scratcher

Posted: Thu Mar 25, 2010 10:10 am
by nirius
Thanks Daniel, I'll give it a go

Re: Noodle Scratcher

Posted: Fri Mar 26, 2010 9:03 pm
by Daniel, Tech Support
OK :) Let me know if you need more help.

Re: Noodle Scratcher

Posted: Thu Apr 08, 2010 5:37 pm
by the_man
hi