/tests/src/test/java/org/sigmah/endtoend/page/GxtApplication.java
Java | 20 lines | 8 code | 8 blank | 4 comment | 0 complexity | 16a10081d55ac1b09de20d74ce38cb1d MD5 | raw file
1/* 2 * All Sigmah code is released under the GNU General Public License v3 3 * See COPYRIGHT.txt and LICENSE.txt. 4 */ 5 6package org.sigmah.endtoend.page; 7 8import org.openqa.selenium.By; 9import org.openqa.selenium.WebDriver; 10 11public class GxtApplication extends GxtComponent { 12 13 public GxtApplication(WebDriver driver) { 14 super(driver.findElement(By.className("x-viewport"))); 15 } 16 17 18 19 20}