Find Method has a limit of 50?

Class library usage, coding and language questions.
Pixi6s
Posts: 92
Joined: Tue Jun 28, 2011 8:57 pm

Find Method has a limit of 50?

Post by Pixi6s » Mon May 21, 2012 3:36 pm

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

User avatar
Support Team
Site Admin
Site Admin
Posts: 12145
Joined: Fri Jul 07, 2006 4:30 pm
Location: Houston, Texas, USA
Contact:

Re: Find Method has a limit of 50?

Post by Support Team » Mon May 21, 2012 5:32 pm

No, the Find method has no such limit.

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

Regards,
Alex
Ranorex Team

Pixi6s
Posts: 92
Joined: Tue Jun 28, 2011 8:57 pm

Re: Find Method has a limit of 50?

Post by Pixi6s » Mon May 21, 2012 5:48 pm

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.