- Suppose there are some itineraries in the Itinerary page, and you want to check on all of them.

Set MyDescription = Description.Create()

MyDescription("html tag").Value = "INPUT"

MyDescription("type").Value = "checkbox"

Set Checkboxes = Browser("micclass:=Browser").Page("Title:=Itenerary: Mercury Tours").ChildObjects(MyDescription)

NoOfChildObjs = Checkboxes.Count

For Counter=0 to NoOfChildObjs-1

            Checkboxes(Counter).Set "ON"

Next

相关文章:

  • 2021-07-13
  • 2021-06-30
  • 2022-01-14
  • 2021-11-17
  • 2022-02-04
  • 2021-12-31
  • 2021-07-06
  • 2022-02-18
猜你喜欢
  • 2022-12-23
  • 2021-08-21
  • 2021-10-25
  • 2021-06-19
  • 2021-08-11
  • 2021-11-27
  • 2021-10-28
相关资源
相似解决方案