List object methods and properties

后端 未结 6 1590
有刺的猬
有刺的猬 2020-12-31 00:12

Is there any way to list available methods for created object in VBS?

For example:

Set IE = CreateObject(\"InternetExplorer.Application\")

6条回答
  •  春和景丽
    2020-12-31 00:37

    Try this ...

    For i = 0 To webElementCount-1 Step 1
    
      innertextProp = myValue2(i).GetROProperty("innertext")
      print i & innertextProp
      print innertextProp
    
    Next
    

提交回复
热议问题