OpenKeyWord  Version: 426, Datum:
afCheckBox.cs
1 #region Header
2 
3 /*
4  * Created by SharpDevelop.
5  * User: Zoltan Hrabovszki
6  * Date: 13.05.2013
7  * Time: 07:29
8  *
9  * To change this template use Tools | Options | Coding | Edit Standard Headers.
10  */
11 
12 #endregion Header
13 
14 namespace OKW.GUI.Selenium.ADF
15 {
16  using System;
17  using System.Collections.Generic;
18 
19  using OKW.GUI;
20  using OKW.GUI.Selenium;
21  using OKW.Log;
22 
23  using OpenQA.Selenium;
24 
28  public class afCheckBox : SeCheckBox
29  {
30  #region Constructors
31 
32  public afCheckBox(string Locator)
33  : base(Locator)
34  {
35  }
36 
37  #endregion Constructors
38  }
39 }
Description of afCheckBox.
Definition: afCheckBox.cs:28
Diese Klasse representiert eine CheckBox, die mit Selenium angsteuert wird.
Definition: SeCheckBox.cs:55
Definition: Core.cs:40