/tests/src/test/java/org/sigmah/endtoend/page/GxtApplication.java
http://sigma-h.googlecode.com/ · Java · 20 lines · 8 code · 8 blank · 4 comment · 0 complexity · 16a10081d55ac1b09de20d74ce38cb1d MD5 · raw file
- /*
- * All Sigmah code is released under the GNU General Public License v3
- * See COPYRIGHT.txt and LICENSE.txt.
- */
-
- package org.sigmah.endtoend.page;
-
- import org.openqa.selenium.By;
- import org.openqa.selenium.WebDriver;
-
- public class GxtApplication extends GxtComponent {
-
- public GxtApplication(WebDriver driver) {
- super(driver.findElement(By.className("x-viewport")));
- }
-
-
-
-
- }