是否可以使用xdotool输入Web控制台命令?

时间:2017-04-07 19:58:55

标签: linux shell xdotool web-console

是否可以使用xdotool输入类似此命令的Web控制台命令:

$("#var2").css("move", - 44 + "deg")

1 个答案:

答案 0 :(得分:1)

是可以的,您可以使用Web控制台或地址栏。 这一步:

  • 专注于浏览器
  • 按F12
  • 输入代码

此示例使用Web控制台的xdotool脚本:

search --sync --onlyvisible --name "chrome"
windowactivate --sync
keydown F12
sleep 1
type --clearmodifiers --delay 10 --args 1 "document.getElementsByTagName('body')[0].style.backgroundColor = 'green'"
sleep 1
key Return
sleep 0.5
key F12

将脚本保存为'xdt.txt',使用xdotool

运行它
xdotool - < xdt.txt