好的,所以我试图从网站上抓取一些信息来尝试解释像 11/22 [50%] 这样的值。我可以保证该值至少是子字符串大小所需的最小值。到目前为止,代码可以找到数据、提取数据并将其设置为 !VAR1。但是由于某种原因,我无法将 !VAR2 放入页面上的输入字段中。它正确切换,找到输入字段并输入“提取结果:”就是这样。
所以我的输入是 11/22 [50%],我只想要 11。所以我将字符串从位置 1,2 拆分为 11。
根据 iMacros wiki,我的语法是正确的,宏运行,我只是没有得到预期的输出,我假设是因为我的 EVAL 行。有谁知道为什么?也将不胜感激。
VERSION BUILD=7601105 RECORDER=FX
TAB T=1
'Go to website
URL GOTO=http://xxxxxxxxxxxxxxxxxxxx
'Set tag to refer to next
TAG POS=1 TYPE=TD ATTR=TXT:Nerve:
'Get the relative position of something that cannot be tagged and extract the cell's info
TAG POS=R1 TYPE=TD ATTR=TXT:* EXTRACT=TXT
'Set VAR1 to Extracted info (For debugging)
SET !VAR1 {{!EXTRACT}}
'Issue must be here, this is trying to run javascript substring on the information harvested.
SET !VAR2 EVAL("var s=\"{{!EXTRACT}}\"; s=s.substring(1,2); s;")
"Extract to null value to be referenced later
SET !EXTRACT NULL
'Test VAR2 by going to another page and posting the info in a textbox.
URL GOTO=http://xxxxxxxxxxxxxxxxxxxx
TAG POS=1 TYPE=INPUT ATTR=NAME:search[id] CONTENT=Extraction<SP>results:{{!VAR2}}