OpenKeyWord  Build Tag: jenkins-DoxyGen_EN-107, Build ID: 2015-03-08_20-51-06
 All Classes Namespaces Functions Variables Properties Pages
OKW.Core Class Reference
Inheritance diagram for OKW.Core:
Collaboration diagram for OKW.Core:

Public Member Functions

 Core ()
 
void BeginTest (string Testname)
 
void ClickOn (string fpsFunctionalname)
 
void ClickOn (string fpsFunctionalname, string fpsClickType)
 
void EndTest ()
 
void LogExists (string fpsFunctionalname)
 
void LogHasFocus (string fpsFunctionalname)
 
void LogIsActive (string fpsFunctionalname)
 
void LogSelected (string fpsFunctionalname)
 
void LogTablecellValue (string fpsFunctionalname, string fpsCol, string fpsRow)
 
void LogTooltip (string fpsFunctionalname)
 
void LogCaption (string fpsFunctionalname)
 
void LogLabel (string fpsFunctionalname)
 
void LogValue (string fpsFunctionalname)
 
void MemorizeExists (string fpsFunctionalname, string fpsValue)
 
void MemorizeHasFocus (string fpsFunctionalname, string fpsValue)
 
void MemorizeIsActive (string fpsFunctionalname, string fpsValue)
 
void MemorizeSelectedValue (string fpsFunctionalname, string fpsValue)
 
void MemorizeTablecellValue (string fpsFunctionalname, string fpsCol, string fpsRow, string fpsKeyName)
 
void MemorizeTooltip (string fpsFunctionalname, string fpsValue)
 
void MemorizeLabel (string fpsFunctionalname, string fpsValue)
 
void MemorizeCaption (string fpsFunctionalname, string fpsValue)
 
void MemorizeValue (string fpsFunctionalname, string fpsValue)
 
void Select (string fpsFunctionalname, string fpsValue)
 
void Select (string fpsFunctionalname, string fpsValue, string fpsClickType)
 
void SelectMenu (string fpsFunctionalname)
 
void SelectMenu (string fpsFunctionalname, string fpsValue)
 
void SelectTablecell (string fpsFunctionalname, string fpsCol, string fpsRow)
 
void SelectTablecell (string fpsFunctionalname, string fpsCol, string fpsRow, string fpsClickType)
 
void SelectWindow (string fpsFunctionalname)
 
void Sequence (string fpsFunctionalname, string fpsSequenName, string SEQID)
 
void SetCurrentState (IOKW_State fp_CurrentState)
 
void SetFocus (string fpsFunctionalname)
 See description here: OKW.OK.SetFocus
Siehe auch: More...
 
void SetLanguage (string Language)
 
void SetValue (string fpsFunctionalname, string fpsValue)
 See description here: OKW.OK.SetValue
Siehe auch: More...
 
void StartApp (string fpsApplikationName)
 
void StopApp (string fpsApplicationName)
 Stops the applikation. More...
 
void TypeKey (string fpsFunctionalname, string fpsValue)
 
void TypeKeyTablecell (string fpsFunctionalname, string fpsCol, string fpsRow, string fpsValue)
 
void TypeKeyWindow (string fpsFunctionalname, string fpsValue)
 
void VerifyExists (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifyHasFocus (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifyIsActive (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifySelectedValue (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifyTablecellValue (string fpsFunctionalname, string fpsCol, string fpsRow, string fpsExpectedValue)
 
void VerifyTooltip (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifyCaption (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifyLabel (string fpsFunctionalname, string fpsExpectedValue)
 
void VerifyValue (string fpsFunctionalname, string fpsExpectedValue)
 

Private Attributes

IOKW_State CurrentState
 

Detailed Description

Author
Zoltán Hrabovszki
Date
09.01.2014

Constructor & Destructor Documentation

OKW.Core.Core ( )
Author
Zoltán Hrabovszki
Date
09.01.2014
95  {
96  this.SetCurrentState(new OK(this));
97  }

Member Function Documentation

void OKW.Core.BeginTest ( string  Testname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

124  {
125  this.CurrentState.BeginTest(Testname);
126  }
void OKW.Core.ClickOn ( string  fpsFunctionalname)
Parameters
fpsFunctionalname
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

142  {
143  this.CurrentState.ClickOn(fpsFunctionalname);
144  }
void OKW.Core.ClickOn ( string  fpsFunctionalname,
string  fpsClickType 
)
Parameters
fpsFunctionalname
ClickType
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

162  {
163  this.CurrentState.ClickOn(fpsFunctionalname, fpsClickType);
164  }
void OKW.Core.EndTest ( )
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

188  {
189  this.CurrentState.EndTest();
190  }
void OKW.Core.LogCaption ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
15.06.2014

Implements OKW.IOKW_State.

338  {
339  this.CurrentState.LogCaption(fpsFunctionalname);
340  }
void OKW.Core.LogExists ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

214  {
215  this.CurrentState.LogExists(fpsFunctionalname);
216  }
void OKW.Core.LogHasFocus ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

240  {
241  this.CurrentState.LogHasFocus(fpsFunctionalname);
242  }
void OKW.Core.LogIsActive ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

266  {
267  this.CurrentState.LogIsActive(fpsFunctionalname);
268  }
void OKW.Core.LogLabel ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
15.06.2014

Implements OKW.IOKW_State.

350  {
351  this.CurrentState.LogLabel(fpsFunctionalname);
352  }
void OKW.Core.LogSelected ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

292  {
293  this.CurrentState.LogSelected(fpsFunctionalname);
294  }
void OKW.Core.LogTablecellValue ( string  fpsFunctionalname,
string  fpsCol,
string  fpsRow 
)
Parameters
fpsFunctionalname
fpsCol
fpsRow
Author
Zoltán Hrabovszki
Date
27.02.2014

Implements OKW.IOKW_State.

314  {
315  this.CurrentState.LogTablecellValue(fpsFunctionalname, fpsCol, fpsRow);
316  }
void OKW.Core.LogTooltip ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
15.06.2014

Implements OKW.IOKW_State.

326  {
327  this.CurrentState.LogTooltip(fpsFunctionalname);
328  }
void OKW.Core.LogValue ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

376  {
377  this.CurrentState.LogValue(fpsFunctionalname);
378  }
void OKW.Core.MemorizeCaption ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

560  {
561  this.CurrentState.MemorizeCaption(fpsFunctionalname, fpsValue);
562  }
void OKW.Core.MemorizeExists ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

402  {
403  this.CurrentState.MemorizeExists(fpsFunctionalname, fpsValue);
404  }
void OKW.Core.MemorizeHasFocus ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

428  {
429  this.CurrentState.MemorizeHasFocus(fpsFunctionalname, fpsValue);
430  }
void OKW.Core.MemorizeIsActive ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

454  {
455  this.CurrentState.MemorizeIsActive(fpsFunctionalname, fpsValue);
456  }
void OKW.Core.MemorizeLabel ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
05.06.2014

Implements OKW.IOKW_State.

545  {
546  this.CurrentState.MemorizeLabel(fpsFunctionalname, fpsValue);
547  }
void OKW.Core.MemorizeSelectedValue ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

480  {
481  this.CurrentState.MemorizeSelectedValue(fpsFunctionalname, fpsValue);
482  }
void OKW.Core.MemorizeTablecellValue ( string  fpsFunctionalname,
string  fpsCol,
string  fpsRow,
string  fpsKeyName 
)
Parameters
fpsFunctionalname
fpsCol
fpsRow
fpsKeyName
Author
Zoltán Hrabovszki
Date
27.02.2014

Implements OKW.IOKW_State.

504  {
505  this.CurrentState.MemorizeTablecellValue(fpsFunctionalname, fpsCol, fpsRow, fpsKeyName);
506  }
void OKW.Core.MemorizeTooltip ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

530  {
531  this.CurrentState.MemorizeTooltip(fpsFunctionalname, fpsValue);
532  }
void OKW.Core.MemorizeValue ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

586  {
587  this.CurrentState.MemorizeValue(fpsFunctionalname, fpsValue);
588  }
void OKW.Core.Select ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

611  {
612  this.CurrentState.Select(fpsFunctionalname, fpsValue);
613  }
void OKW.Core.Select ( string  fpsFunctionalname,
string  fpsValue,
string  fpsClickType 
)
Parameters
fpsFunctionalname
fpsValue
fpsClickType
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

643  {
644  this.CurrentState.Select(fpsFunctionalname, fpsValue, fpsClickType);
645  }
void OKW.Core.SelectMenu ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

669  {
670  this.CurrentState.SelectMenu(fpsFunctionalname);
671  }
void OKW.Core.SelectMenu ( string  fpsFunctionalname,
string  fpsValue 
)
Parameters
fpsFunctionalname
fpsValue
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

689  {
690  this.CurrentState.SelectMenu(fpsFunctionalname, fpsValue);
691  }
void OKW.Core.SelectTablecell ( string  fpsFunctionalname,
string  fpsCol,
string  fpsRow 
)
Parameters
fpsFunctionalname
fpsCol
fpsRow
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

710  {
711  this.CurrentState.SelectTablecell(fpsFunctionalname, fpsCol, fpsRow);
712  }
void OKW.Core.SelectTablecell ( string  fpsFunctionalname,
string  fpsCol,
string  fpsRow,
string  fpsClickType 
)
Parameters
fpsFunctionalname
fpsCol
fpsRow
fpsClickType
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

734  {
735  this.CurrentState.SelectTablecell(fpsFunctionalname, fpsCol, fpsRow, fpsClickType);
736  }
void OKW.Core.SelectWindow ( string  fpsFunctionalname)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

760  {
761  this.CurrentState.SelectWindow(fpsFunctionalname);
762  }
void OKW.Core.Sequence ( string  fpsFunctionalname,
string  fpsSequenName,
string  SEQID 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

776  {
777  this.CurrentState.Sequence(fpsFunctionalname, fpsSequenName, SEQID);
778  }
void OKW.Core.SetCurrentState ( IOKW_State  fp_CurrentState)
Author
Zoltán Hrabovszki
Date
09.01.2014
792  {
793  this.CurrentState = fp_CurrentState;
794  }
void OKW.Core.SetFocus ( string  fpsFunctionalname)

See description here: OKW.OK.SetFocus
Siehe auch:

Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

827  {
828  this.CurrentState.SetFocus(fpsFunctionalname);
829  }
void OKW.Core.SetLanguage ( string  Language)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

843  {
844  this.CurrentState.SetLanguage(Language);
845  }
void OKW.Core.SetValue ( string  fpsFunctionalname,
string  fpsValue 
)

See description here: OKW.OK.SetValue
Siehe auch:

Beschreibung unter OKW.OK.SetFocus
Siehe auch:

Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

876  {
877  this.CurrentState.SetValue(fpsFunctionalname, fpsValue);
878  }
void OKW.Core.StartApp ( string  fpsApplikationName)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

892  {
893  this.CurrentState.StartApp(fpsApplikationName);
894  }
void OKW.Core.StopApp ( string  fpsApplicationName)

Stops the applikation.

Parameters
fpsApplicationName'>
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

910  {
911  this.CurrentState.StopApp(fpsApplicationName);
912  }
void OKW.Core.TypeKey ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

936  {
937  this.CurrentState.TypeKey(fpsFunctionalname, fpsValue);
938  }
void OKW.Core.TypeKeyTablecell ( string  fpsFunctionalname,
string  fpsCol,
string  fpsRow,
string  fpsValue 
)
Parameters
fpsFunctionalname
fpsCol
fpsRow
fpsValue
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

960  {
961  this.CurrentState.TypeKeyTablecell(fpsFunctionalname, fpsCol, fpsRow, fpsValue);
962  }
void OKW.Core.TypeKeyWindow ( string  fpsFunctionalname,
string  fpsValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

986  {
987  this.CurrentState.TypeKeyWindow(fpsFunctionalname, fpsValue);
988  }
void OKW.Core.VerifyCaption ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
15.06.2014

Implements OKW.IOKW_State.

1144  {
1145  this.CurrentState.VerifyCaption(fpsFunctionalname, fpsExpectedValue);
1146  }
void OKW.Core.VerifyExists ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

1012  {
1013  this.CurrentState.VerifyExists(fpsFunctionalname, fpsExpectedValue);
1014  }
void OKW.Core.VerifyHasFocus ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

1038  {
1039  this.CurrentState.VerifyHasFocus(fpsFunctionalname, fpsExpectedValue);
1040  }
void OKW.Core.VerifyIsActive ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

1064  {
1065  this.CurrentState.VerifyIsActive(fpsFunctionalname, fpsExpectedValue);
1066  }
void OKW.Core.VerifyLabel ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
15.06.2014

Implements OKW.IOKW_State.

1159  {
1160  this.CurrentState.VerifyLabel(fpsFunctionalname, fpsExpectedValue);
1161  }
void OKW.Core.VerifySelectedValue ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

1090  {
1091  this.CurrentState.VerifySelectedValue(fpsFunctionalname, fpsExpectedValue);
1092  }
void OKW.Core.VerifyTablecellValue ( string  fpsFunctionalname,
string  fpsCol,
string  fpsRow,
string  fpsExpectedValue 
)
Parameters
fpsFunctionalname
fpsCol
fpsRow
fpsExpectedValue
Author
Zoltán Hrabovszki
Date
27.02.2014

Implements OKW.IOKW_State.

1114  {
1115  this.CurrentState.VerifyTablecellValue(fpsFunctionalname, fpsCol, fpsRow, fpsExpectedValue);
1116  }
void OKW.Core.VerifyTooltip ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

1129  {
1130  this.CurrentState.VerifyTooltip(fpsFunctionalname, fpsExpectedValue);
1131  }
void OKW.Core.VerifyValue ( string  fpsFunctionalname,
string  fpsExpectedValue 
)
Author
Zoltán Hrabovszki
Date
09.01.2014

Implements OKW.IOKW_State.

1185  {
1186  this.CurrentState.VerifyValue(fpsFunctionalname, fpsExpectedValue);
1187  }

The documentation for this class was generated from the following file: