Fail on paypal login

Discussions and Tech Support specific to the iMacros for Chrome extension.
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
siniy
Posts: 118
Joined: Sat Nov 07, 2009 7:44 pm

Fail on paypal login

Post by siniy » Thu Jun 23, 2011 10:13 pm

I'm trying to "buy it now" item on ebay with paypal.
When I click login on paypal authorization page, chrome plugin can't handle ajax loading and script fails on the last row of this example.
Firefox plugin handles this well, but I need the script to work with Chrome.
I can't add WAIT SECONDS=10 because speed is an issue.
Tried ERRORIGNORE YES, LOADCHECK NO etc., nothing helps.
Video http://screencast.com/t/T7ikOGS9m

Code: Select all

TAB T=1
SET !TIMEOUT 600
URL GOTO=http://cgi.ebay.com/USB-Data-Sync-Charger-Cable-4-iPod-Nano-Touch-iPhone-3G-/200489258091?pt=Other_MP3_Player_Accessories&hash=item2eae174c6b
TAG POS=1 TYPE=A ATTR=TXT:Buy<SP>It<SP>Now
TAG POS=1 TYPE=INPUT ATTR=ID:ryp_PayPalOnlyButton
'paypal login
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:login_form ATTR=ID:login_email CONTENT=mypaypal@login.com
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:login_form ATTR=ID:login_password CONTENT=mypassword
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:parentForm ATTR=ID:submitLogin
'this last row fails
TAG POS=1 TYPE=SPAN ATTR=TXT:PayPal<SP>Balance EXTRACT=TXT
Post Reply