Package org.qagile.pages

Source Code of org.qagile.pages.RegistrationPage

package org.qagile.pages;

import org.qagile.locators.Locators;
import org.qagile.selenium.SeleniumHelper;

public class RegistrationPage {
  private SeleniumHelper helper;
  private Locators locators;

  public RegistrationPage() {
    this.helper = new SeleniumHelper();
    this.locators = new Locators();
  }

  public void open() {
    locators.registrationLocators().registrationLink()
        .click("Etsy - Register");
  }

}
TOP

Related Classes of org.qagile.pages.RegistrationPage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.