Search found 2 matches

by jkang
Fri Sep 06, 2013 9:51 pm
Forum: Automation Tools
Topic: Saving Part of Message Into a Variable
Replies: 2
Views: 2249

Re: Saving Part of Message Into a Variable

I got it to work and Heres my code: repo.FrmMain.FrmCreateCase.Save.Click(); Accessible accElement = new Accessible(repo.MessageBoxDialog.CaseSuccessfullyCreatedWithCaseNumb); string FullCaseSuccessMessage= accElement.Name; string []SavedCaseNumber = FullCaseSuccessMessage.Split(" ".ToCharArray()); ...
by jkang
Fri Sep 06, 2013 4:37 pm
Forum: Automation Tools
Topic: Saving Part of Message Into a Variable
Replies: 2
Views: 2249

Saving Part of Message Into a Variable

So here's what happens in the application. When case information is entered completely and is saved, the following confirmation message should appear: CaseCreationMessage.jpg When the case is saved, the case number is auto-generated a random number/combination and assigned to that case. So in that c...