urlcurrent help

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
PatrickP1976
Posts: 1
Joined: Thu Feb 25, 2016 2:54 am

urlcurrent help

Post by PatrickP1976 » Thu Feb 25, 2016 3:11 am

Hello
I am running iMacros 8 on Windows 8 in the iMacros browser.
I am trying to capture in a csv file all of the full url addresses I am visiting.
I have played with this program in the past but it seems like it has been years and I never did something like this, so my attempt below could be way off.

Thanks in advance!

VERSION BUILD=8021970
TAB T=1
TAB CLOSEALLOTHERS
URL GOTO=https://www.meritorpartsonline.com/weba ... reId=10154
TAG POS=1 TYPE=A FORM=ID:displayForm ATTR=ID:WC_CategoriesSidebarDisplayf_links_2_1
set !extractadd{{!urlcurrent}}
TAG POS=1 TYPE=A FORM=ID:displayForm ATTR=ID:WC_CategoriesSidebarDisplayf_links_2_1
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcss ... re/images/*
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcss ... re/images/*
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcss ... re/images/*
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcss ... re/images/*
set !extractadd{{!urlcurrent}}
saveas type=extract folder=c:\ftd\url.csv
IrishMacro
Posts: 135
Joined: Wed Nov 03, 2010 12:27 pm

Re: urlcurrent help

Post by IrishMacro » Thu Feb 25, 2016 4:28 pm

set !extractadd is old
See this http://wiki.imacros.net/!EXTRACTADD
Firefox free plugin, last version
Win7
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: urlcurrent help

Post by chivracq » Thu Feb 25, 2016 8:13 pm

PatrickP1976 wrote:Hello
I am running iMacros 8 on Windows 8 in the iMacros browser.
I am trying to capture in a csv file all of the full url addresses I am visiting.
I have played with this program in the past but it seems like it has been years and I never did something like this, so my attempt below could be way off.

Thanks in advance!

Code: Select all

VERSION BUILD=8021970
TAB T=1
TAB CLOSEALLOTHERS
URL GOTO=https://www.meritorpartsonline.com/webapp/wcs/stores/servlet/CategoryDisplay?urlRequestType=Base&catalogId=10051&categoryId=10001&pageView=detailed&urlLangId=-1&beginIndex=0&langId=-1&top_category=10001&top=Y&parent_category_rn=10001&storeId=10154
TAG POS=1 TYPE=A FORM=ID:displayForm ATTR=ID:WC_CategoriesSidebarDisplayf_links_2_1
set !extractadd{{!urlcurrent}}
TAG POS=1 TYPE=A FORM=ID:displayForm ATTR=ID:WC_CategoriesSidebarDisplayf_links_2_1
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcsstore/MeritorStorefrontAssetStore/images/*
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcsstore/MeritorStorefrontAssetStore/images/*
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcsstore/MeritorStorefrontAssetStore/images/*
set !extractadd{{!urlcurrent}}
TAG POS=4 TYPE=IMG ATTR=SRC:https://www.meritorpartsonline.com/wcsstore/MeritorStorefrontAssetStore/images/*
set !extractadd{{!urlcurrent}}
	saveas type=extract folder=c:\ftd\url.csv
IrishMacro wrote:set !extractadd is old
See this http://wiki.imacros.net/!EXTRACTADD
Yep, correct, but it still works I think...

More problematic would be the missing Space for all those Statements, I would think...
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
Post Reply