我录入ESXi主机的的web页面,选择器采用“脚本”方式,可以实现密码代填。我录入HP硬件服务器的iLO管理web页面,却无法实现密码代填。
不知道什么原因。
是不是页面有反扒,或者代填的不上的那一步,比如账号能填密码不能填,就在密码代填前加一步sleep 防止代填过快导致没填上
下方是我的代码,sleep应该加在哪里。
[
{
“step”: 1,
“value”: “{USERNAME}”,
“target”: “xpath=/html/body/div/div/div/div/div[2]/div/div[4]/div/form/fieldset/div[1]/span/input”,
“command”: “type”
},
{
“step”: 2,
“value”: “{SECRET}”,
“target”: “xpath=/html/body/div/div/div/form/div[1]/div[3]/label/input”,
“command”: “type”
},
{
“step”: 3,
“value”: “”,
“target”: “xpath=/html/body/div/div/div/form/div[1]/div[4]/button”,
“command”: “click”
},
{
“step”: 4,
“value”: “”,
“target”: “”,
“command”: “headless”
}
]
你第四步加上是干嘛的,后台执行?
第四步可以忽略,我取消了也是一样的,无法自动代填。