Noodle Scratcher

Support for iMacros. The iMacros software is the unique solution for automating every activity inside a web browser, for data extraction and web testing.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

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
Post Reply
nirius
Posts: 11
Joined: Thu Mar 04, 2010 5:14 pm

Noodle Scratcher

Post by nirius » Tue Mar 09, 2010 8:16 am

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
Last edited by nirius on Tue Mar 09, 2010 10:09 am, edited 2 times in total.
coolcocky
Posts: 21
Joined: Tue Sep 01, 2009 8:45 pm

Re: Noodle Scratcher

Post by coolcocky » Tue Mar 09, 2010 8:27 am

cant understand what are you trying to achieve

regards,

cool
nirius
Posts: 11
Joined: Thu Mar 04, 2010 5:14 pm

Re: Noodle Scratcher

Post by nirius » Tue Mar 09, 2010 9:55 am

i just want to be able to cancel a login prompt that appears when connecting to a site through a password secured proxy

thanks
Daniel, Tech Support
Posts: 1483
Joined: Tue Jan 26, 2010 11:35 am

Re: Noodle Scratcher

Post by Daniel, Tech Support » Wed Mar 10, 2010 2:11 pm

Hello,

Have you tried the ONLOGIN command?
Daniel, iOpus Support
nirius
Posts: 11
Joined: Thu Mar 04, 2010 5:14 pm

Re: Noodle Scratcher

Post by nirius » Thu Mar 11, 2010 1:29 am

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
Daniel, Tech Support
Posts: 1483
Joined: Tue Jan 26, 2010 11:35 am

Re: Noodle Scratcher

Post by Daniel, Tech Support » Tue Mar 23, 2010 1:49 pm

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,
Daniel, iOpus Support
nirius
Posts: 11
Joined: Thu Mar 04, 2010 5:14 pm

Re: Noodle Scratcher

Post by nirius » Thu Mar 25, 2010 10:10 am

Thanks Daniel, I'll give it a go
Daniel, Tech Support
Posts: 1483
Joined: Tue Jan 26, 2010 11:35 am

Re: Noodle Scratcher

Post by Daniel, Tech Support » Fri Mar 26, 2010 9:03 pm

OK :) Let me know if you need more help.
Daniel, iOpus Support
the_man
Posts: 28
Joined: Sun Mar 08, 2009 8:16 pm

Re: Noodle Scratcher

Post by the_man » Thu Apr 08, 2010 5:37 pm

hi
Post Reply