/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

  1. /*
  2. * All Sigmah code is released under the GNU General Public License v3
  3. * See COPYRIGHT.txt and LICENSE.txt.
  4. */
  5. package org.sigmah.endtoend.page;
  6. import org.openqa.selenium.By;
  7. import org.openqa.selenium.WebDriver;
  8. public class GxtApplication extends GxtComponent {
  9. public GxtApplication(WebDriver driver) {
  10. super(driver.findElement(By.className("x-viewport")));
  11. }
  12. }