Quick iMacros help / basic question

Ash2012

Regular Member
Joined
Nov 20, 2012
Messages
343
Reaction score
59
This is probably a really basic question to anyone who knows iMacros ok, but I'm having trouble extracting text from Godaddy auction site and wondered if anyone can help?

The code I've got so far:
Code:
VERSION BUILD=8300326 RECORDER=FX
TAB T=1
URL GOTO=https://auctions.godaddy.com/
TAG POS=1 TYPE=A ATTR=TXT:Advanced<SP>Search
TAG POS=1 TYPE=INPUT:CHECKBOX ATTR=ID:adv_Expiring_Chk CONTENT=YES
TAG POS=1 TYPE=INPUT:CHECKBOX ATTR=ID:adv_tld1_Chk CONTENT=YES
TAG POS=1 TYPE=INPUT:CHECKBOX ATTR=ID:adv_Dashes_Chk CONTENT=NO
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:adv_TrafficMin_Txt CONTENT=1000
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:adv_AgeMin_Txt CONTENT=1
TAG POS=1 TYPE=A ATTR=TXT:Run<SP>Search
TAG POS=1 TYPE=SPAN ATTR=CLASS:OneLinkNoTx EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}

This is supposed to extract the first domain name (text) on the list, but it seems to extract an entirely different bit of text and I can't work out why. It must be a wrong classname or something but I'm being thick. This returns "Go Daddy" as the extracted text.

Anyone able to offer an answer why?
 
Back
Top