我在firefox上有一个Kantu宏。我首先声明一个日期变量以获取当前日期-2天
{
"Command": "storeEval",
"Target": "var d= new Date(new Date().getTime() + 24 * 60 * 60 * 1000 * -2); var m=((d.getMonth()+1)<10)?'0'+(d.getMonth()+1):(d.getMonth()+1); d.getFullYear()+\"-\"+m+\"-\"+d.getDate();",
"Value": "mydate"
},
然后我尝试输入变量...
{
"Command": "click",
"Target": "id=startDate",
"Value": ""
},
{
"Command": "type",
"Target": "id=startDate",
"Value": "{$mydate}"
},
但是当我应该得到类似'2018-09-11'之类的信息时,我在字段中得到的输出是文本{$ mydate}
我在做什么错了?
谢谢
答案 0 :(得分:0)
看起来像一个简单的错字。它是$ {mydate},而不是{$ mydate};-)
{
"Command": "type",
"Target": "id=startDate",
"Value": "${mydate}"
},
答案 1 :(得分:0)
尝试这个
findMidpoint