注意大小写:
Set n=WScript.CreateObject("WScript.shell") #创建web应用脚本
n.run "https://www.baidu.com" #变量名.run方法打开网址
WScript.Sleep 3000 #脚本睡3000毫秒再执行
n.SendKeys "helloworld" #变量名.SendKeys方法对首个输入框进行输入内容
n.SendKeys "{TAB}" #tab建换下一个输入框
WScript.Sleep 200 #睡觉
n.SendKeys "{DOWN}" #下按键