OpenKeyWord  Build_ID: 457, Datum: 01.02.2020 07:45:48
Dont repeat yourself. - Do it once and only once!
frmInternetExplorer.java
1 /*
2  ==============================================================================
3  Author: Zoltán Hrabovszki <zh@openkeyword.de>
4 
5  Copyright © 2012 - 2019 IT-Beratung Hrabovszki
6  www.OpenKeyWord.de
7  ==============================================================================
8 
9  This file is part of OpenKeyWord.
10 
11  OpenKeyWord is free software: you can redistribute it and/or modify
12  it under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenKeyWord is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  GNU General Public License for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenKeyWord. If not, see <http://www.gnu.org/licenses/>.
23 
24  Diese Datei ist Teil von OpenKeyWord.
25 
26  OpenKeyWord ist Freie Software: Sie können es unter den Bedingungen
27  der GNU General Public License, wie von der Free Software Foundation,
28  Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
29  veröffentlichten Version, weiterverbreiten und/oder modifizieren.
30 
31  OpenKeyWord wird in der Hoffnung, dass es nützlich sein wird, aber
32  OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
33  Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
34  Siehe die GNU General Public License für weitere Details.
35 
36  Sie sollten eine Kopie der GNU General Public License zusammen mit
37  OpenKeyWord erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
38 */
39 
40 package okw.gui.frames;
41 
42 import java.util.ArrayList;
43 
44 import okw.gui.adapter.selenium.SeBrowserWindow;
45 
109 //@OKW (FN="InternetExplorer")
111 {
112 
125  public void SelectWindow()
126  {
127  }
128 
143  public void StartApp()
144  {
145  LogFunctionStartDebug("StartApp");
146 
147  //SeDriver.getInstance().setDriver( fpDriver );
148  // this.Init();
149 
151  }
152 
153 
168  public void StopApp()
169  {
170  LogFunctionStartDebug("StopApp");
171 
172  //SeDriver.getInstance().driver.quit();
173 
175  }
176 
177  public void TypeKey(ArrayList<String> fps_Values)
178  {
179  }
180 }
okw.gui.frames.frmInternetExplorer.SelectWindow
void SelectWindow()
Konstruktor der Klasse, aktuell keine MethodenAufrufe.
Definition: frmInternetExplorer.java:125
okw.gui.AnyWinBase.LogFunctionEndDebug
void LogFunctionEndDebug()
Methode ruft die Methode Logger.Instance.LogFunctionEndDebug() auf.
Definition: AnyWinBase.java:298
okw.gui.frames.frmInternetExplorer.StartApp
void StartApp()
Erzeugt eine Instanz des Selenium HTMLUnit-Drivers.
Definition: frmInternetExplorer.java:143
okw.gui.frames.frmInternetExplorer
Definition: frmInternetExplorer.java:110
okw.gui.frames.frmInternetExplorer.TypeKey
void TypeKey(ArrayList< String > fps_Values)
Tastatur Eingabe an das Objekt.
Definition: frmInternetExplorer.java:177
okw.gui.adapter.selenium.SeBrowserWindow
Definition: SeBrowserWindow.java:58
okw.gui.AnyWinBase.LogFunctionStartDebug
void LogFunctionStartDebug(String fpsMethodName)
Methode ruft die Methode Logger.Instance.LogFunctionStartDebug(fps_FunctionName), und erweitert den g...
Definition: AnyWinBase.java:212
okw.gui.frames.frmInternetExplorer.StopApp
void StopApp()
HTMLUnit-Driver Beenden.
Definition: frmInternetExplorer.java:168