zoukankan      html  css  js  c++  java
  • How to get the text from any standard object

    The code below shows how you can get the text from any standard object without using text recognition.

    Standard Examples

    'Get text from a ListView - report style (for example, Windows Explorer)

    msgbox Window("C:\Program Files\Mercury").WinListView("SysListView32").GetSubItem(1,2)

    'Get text from a toolbar

    msgbox Window("C:\Program Files\Mercury").WinToolbar("ToolbarWindow32").GetItem(1)

    'Text of a message-box, the Static control is not in the object repository/shared object ' 'repository

    set StatObj = Dialog("DlgTB").Dialog("DlgTB").Static("nativeclass:=Static","Index:=1")

    msgbox StatObj.GetROProperty("text")

    Web Example

    ' An example for a Web Table (in the Mercury Tour site)

    Set Cell = Browser("Welcome: Mercury Tours").Page("Select a Flight: Mercury").WebTable("RETURN").ChildItem(3, 2, "WebElement", 0)

    Msgbox Cell.GetROProperty("innertext")

    Visual Basic Example

    'Retrieving the text of a label in a VB form: (There is no Test Object for a label)

    msgbox VbWindow("VBForm1").Object.Controls("Label1").caption

    .NET Example

    'Get the text of items in a CheckListBox (has no Test Object)

    'Get run-time object reference

    Set CustList = SwfWindow("Win").SwfObject(ìlst").Object

    'Get Items collection

    Set ListItems = CustList.get_Items()

    'Get Items count

    ItemsCount = ListItems.Count

    'Loop over all items

    For i = 0 to ItemsCount-1

           text = text & ListItems.Item(i)

    Next

    ActiveX Example

    ' This example will retrieve the text from the Visual Basic Flight 1A sample application's flight grid

    ' This retrieves the flight number from the 3rd row.

    VbWindow("VbWindow").VbWindow("VbWindow").AcxTable("Grid Control").Object.Row = 3

    VbWindow("VbWindow").VbWindow("VbWindow").AcxTable("Grid Control").Object.Col = 0

    msgbox VbWindow("VbWindow").VbWindow("VbWindow").AcxTable("Grid Control").Object.Text

  • 相关阅读:
    实验 6:OpenDaylight 实验——OpenDaylight 及 Postman 实现流表下发
    实验 4:Open vSwitch 实验——Mininet 中使用 OVS 命令
    实验 3:Mininet 实验——测量路径的损耗率
    第一次个人编程作业
    实验 2:Mininet 实验——拓扑的命令脚本生成
    实验 1:Mininet 源码安装和可视化拓扑工具
    第一次博客作业
    第一次个人编程作业
    第一次博客作业
    需求分析报告
  • 原文地址:https://www.cnblogs.com/emma/p/1682672.html
Copyright © 2011-2022 走看看