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
130
Unable to recognize the summary row.
posted

We have a SwfTable and 32 rows on it. We have been able to work on the 32 rows. Apart from the rows there is one summary row which stays constant on the screen. we have not been able to get values out of it or get QTP get it recognized. This is the only piece left for us to get fixed to complete our testing.

I have attached the screen shot of the SwfTable and have marked the summary row. Kindly let me know a method to get the values out of it.

scrshot1.zip
Parents
No Data
Reply
  • 6729
    Suggested Answer
    Offline posted

    Hi,

    You can try:

    SwfTable(...).GetNAProperty("Rows.SummaryValues[1].Value") 
    SwfTable(...).GetNAProperty("Rows.SummaryValues[1].SummaryText") 

    The first one will get you the value of the summary and the second to get the displayed text. "SummaryValues" is a 0 based collection on the rows collection so if the rows that are being summarized are in child band you should use "Rows[0].Rows.SummaryValues[0].Value"

    Let me know how it goes.

    Ammar 

Children
No Data