This is a migrated thread and some comments may be shown as answers.

Recorder client failing when verifying tables of data

3 Answers 60 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Dave Clarke
Top achievements
Rank 1
Dave Clarke asked on 03 Feb 2011, 06:10 PM
Hi

We are currently using version 2010.2.830.0 of Web UI Test Studio Dev edition with Visual Studio 2010. We are still having issues when verifying HTML tables. We get the usual "recorder client is unable to communicate with the recording host" error. It works fine with very small tables of figures but not with larger ones.

Here is a sample file:
http://www.visualize.uk.com/temp/webaiitable.htm
Try verifying the innerhtml for the whole table. It will fail.

Do you know if this has been fixed yet?

Please advise. I logged this last year see thread:
http://www.telerik.com/automated-testing-tools/community/forums/webui-test-studio-developer-edition/general-discussions/stability-issues.aspx

thanks
Dave

3 Answers, 1 is accepted

Sort by
0
Cody
Telerik team
answered on 03 Feb 2011, 07:39 PM
Hi Dave Clarke,

Thank you for sending us the sample page to work with! Since we never got the sample page from you in the previous thread we were unable to reproduce the problem and find its cause and fix it. I have filed bug 106823 to track this issue.

Is this problem preventing you from using the product at all i.e. is this a work stoppage issue? If it would help, we can create the same verification manually in a coded step.

Kind regards,
Cody
the Telerik team
Interested in Agile Testing? Check out Telerik TV for a recording of Automated Testing in the Agile Environment
0
Matthew Roberts
Top achievements
Rank 1
answered on 03 Mar 2011, 02:48 PM
Hi Guys

Any joy with a fix for this? At the moment it is restricting our auto testing considerably (we have a lot of reports with large data tables).

If you can offer a workaround that would be great.

Thanks
Dave Clarke


0
Cody
Telerik team
answered on 07 Mar 2011, 05:51 PM
Hi Matthew Roberts,

I am sorry but our software engineers have not had the chance to find and fix this problem. It is still in their queue to be worked on.

In the meantime you can do this verification in a simple coded step. Here's a sample to help you get started.

[CodedStep("MyCustom Step Description")]
public void MyCustomStep()
{
    HtmlTable dataTable = ActiveBrowser.Find.ByExpression<HtmlTable>("class=DataEntryTable");
    Log.WriteLine(dataTable.BaseElement.InnerMarkup);
}

 

Greetings,
Cody
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
Tags
General Discussions
Asked by
Dave Clarke
Top achievements
Rank 1
Answers by
Cody
Telerik team
Matthew Roberts
Top achievements
Rank 1
Share this question
or