HELP: Script for Wetransfer in Firefox 62.0.3 (64-bit)

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
StefanM
Posts: 7
Joined: Sun Oct 14, 2018 10:01 am

HELP: Script for Wetransfer in Firefox 62.0.3 (64-bit)

Post by StefanM » Sun Oct 14, 2018 1:00 pm

I record this script with the free version:

VERSION BUILD=10021450
URL GOTO=https://wetransfer.com/
TAB OPEN
TAB T=2
URL GOTO=https://wetransfer.com/
TAG POS=1 TYPE=INPUT:EMAIL ATTR=NAME:email CONTENT=sender@mail-provider.com
TAG POS=1 TYPE=INPUT:EMAIL ATTR=NAME:autosuggest CONTENT=recipient@mail-provider.com
TAG POS=1 TYPE=H2 ATTR=TXT:Add<SP>your<SP>files
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:https://wetransfer.com/ ATTR=* CONTENT=C:\fakepath\test.exe
TAG POS=1 TYPE=BUTTON ATTR=TXT:Transfer


But when playing it, the only thing it does is opening a new tab with https://wetransfer.com/
It does not enter any email addresses.
It does not "click" on the "add your files" button
It does not click on the "transfer" button

And how can the script know my file path when it replaces it with a fakepath?

Can anybody help, please?
Attachments
What the script SHOULD do
What the script SHOULD do
access2vivek
Posts: 69
Joined: Wed Dec 20, 2017 10:00 am
Location: New Delhi, India
Contact:

Re: HELP: Script for Wetransfer in Firefox 62.0.3 (64-bit)

Post by access2vivek » Sun Nov 04, 2018 1:14 pm

I have tested your script on Firefox v. 52 and iMacros Version 8.9.7 and it seems to be working perfectly.

Here is the complete code that I used to write email address in both fields and upload an image and then transfer it.

var code="CODE:";
code+="URL GOTO=www.wetransfer.com\n";
code+="TAG POS=1 TYPE=INPUT:EMAIL ATTR=NAME:email CONTENT=sender@mail-provider.com\n";
code+="TAG POS=1 TYPE=INPUT:EMAIL ATTR=NAME:autosuggest CONTENT=recipient@mail-provider.com\n";
code+="TAG POS=1 TYPE=INPUT:FILE ATTR=* CONTENT=C:\\Users\\Public\\Pictures\\Sample<SP>Pictures\\Desert.jpg\n";
code+="TAG POS=1 TYPE=BUTTON ATTR=TXT:Transfer\n"

iimPlay(code);

I hope it helps :-)
Robust iMacros development with quick turnaround time. Drop an email at "access2content@gmail.com" with your project details.
Post Reply