Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
265
How to open 'ColumnChooser' from a Grid
posted

Hi people, I'm new user of Test Advantage ver 2009.2 with RFT 8.1, I'm just wondering  how can I open the 'ColumnChooser' from a Grid. Anyone knows that?

Thanks,

Rick

  • 6729
    Verified Answer
    Offline posted

    Rick,

    To show Column chooser for the root Band:

    UltraGrid1Table().Click(AtList(AtRow(0), AtLocation(

    "RowSelectorHeader")))

    For a Child Band:

     

    UltraGrid1Table().Click(AtList(AtRow(0),AtRow(0), AtLocation("RowSelectorHeader")))

     

    if there are no rows in the Grid then you can show the column chooser by:

    UltraGrid1Table().Click(AtList(AtLocation(

    "Band"), AtIndex(0), AtLocation("RowSelectorHeader")))

    I hope this was helpful. if so, please verify the answer so others can benefit.