我的iMacros LOOP遇到了一些麻烦。计划是访问该网站,搜索关键字并等待结果列表。例如鞋子看到这个链接:
https://www.ebay-kleinanzeigen.de/s-schuhe/k0
我的想法是点击第一个结果并将其解压缩到csv文件(csv文件已经设置并且工作正常。一旦在项目页面上,我想提取描述/ beschreibung和两个工作的URL到目前为止很好。请看这个链接:
https://www.ebay-kleinanzeigen.de/s-anzeige/bmt-schuhe-schwarz/524917076-158-4466
然后返回并重复相同的步骤,获得x个结果。
问题在于我无法找到正确的代码来提取第一个结果并循环其余的结果+提取每个结果。
到目前为止,这是我的代码:
VERSION BUILD=9030808 RECORDER=FX
TAB T=1
SET !EXTRACT_TEST_POPUP NO
SET !ERRORIGNORE YES
URL GOTO=https://www.ebay-kleinanzeigen.de/s-anzeige/adidas-sport-freizeit-schuhe-gr-35/524737681-19-3157
**This should be the LOOP and titel extraction part***
**This is the part where the description and URL are extracted**
TAG POS=1 TYPE=P ATTR=ID:viewad-description-text EXTRACT=TXT
ADD !EXTRACT {{!URLCURRENT}}
SAVEAS TYPE=EXTRACT FOLDER=* FILE=extraction.csv
希望有人可以帮助我:)非常感谢!