Noodle Scratcher
Forum rules
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Noodle Scratcher
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
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
Last edited by nirius on Tue Mar 09, 2010 10:09 am, edited 2 times in total.
Re: Noodle Scratcher
cant understand what are you trying to achieve
regards,
cool
regards,
cool
Re: Noodle Scratcher
i just want to be able to cancel a login prompt that appears when connecting to a site through a password secured proxy
thanks
thanks
-
- Posts: 1483
- Joined: Tue Jan 26, 2010 11:35 am
Re: Noodle Scratcher
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
Cheers
Nirius
-
- Posts: 1483
- Joined: Tue Jan 26, 2010 11:35 am
Re: Noodle Scratcher
Hello,
This script works for me:
You can copy the DS line if the login window appears more than once.
Best regards,
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
Best regards,
Daniel, iOpus Support
Re: Noodle Scratcher
Thanks Daniel, I'll give it a go
-
- Posts: 1483
- Joined: Tue Jan 26, 2010 11:35 am