在自动脚本中,我使用
循环遍历所有元素feedAnimal(bessy)(new Grass) // prints the lines
// feedAnimal(bessy)(new Fish) // won't typecheck
我可以通过它的html类型属性来识别元素。即:
For $oElement in $oFormElements
等于:
<input type="password .... />
到目前为止,上帝,但我可以选择一个HTML对象,而不是它的类型属性,而是选择它的标签类型,即“按钮”
If $oElement.Type = 'password' Then
我在autoit wiki中找不到一个引用,它告诉我DOM对象可以有哪些属性。