Page 1 of 1

Find Method has a limit of 50?

Posted: Mon May 21, 2012 3:36 pm
by Pixi6s
I am using the Find Method to evaluate the messages in OWA outlook. I usually have just over 100 messages that need to be evaluated. It appears that my Find Loop gives up after 50 messages.

Is this expected? Is there anyway I can increase the number of loops?

Code: Select all

Report.Log(ReportLevel.Info, "Auto", "Evaluate Email List");
IList<Ranorex.DivTag> emails = wd.Find<Ranorex.DivTag>(RepositoryTerms.Email.Text_EmailSubject);
foreach (Ranorex.DivTag email in emails) 
{
...
}
Thanks

Re: Find Method has a limit of 50?

Posted: Mon May 21, 2012 5:32 pm
by Support Team
No, the Find method has no such limit.

Have you checked in Ranorex Spy how many elements there are?

Regards,
Alex
Ranorex Team

Re: Find Method has a limit of 50?

Posted: Mon May 21, 2012 5:48 pm
by Pixi6s
Thanks for the reply.

You are right Outlook is "chucking" up the message at 50 even when they are in the same grouping (eg "Today").

Thanks for putting me back on track.