![JAR search and dependency download from the Maven repository](/logo.png)
com.epam.jdiuitests.implementation.selenium.elements.complex.Menu Maven / Gradle / Ivy
/**
* *************************************************************************
* Copyright (C) 2014 GGA Software Services LLC
*
* This file may be distributed and/or modified under the terms of the
* GNU General Public License version 3 as published by the Free Software
* Foundation.
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see .
* *************************************************************************
*/
package com.epam.jdiuitests.implementation.selenium.elements.complex;
import com.epam.jdiuitests.implementation.selenium.elements.interfaces.complex.IMenu;
import org.openqa.selenium.By;
/**
* RadioButtons control implementation
*
* @author Alexeenko Yan
*/
public class Menu extends Selector implements IMenu {
public Menu() {
super();
}
public Menu(By optionsNamesLocatorTemplate) {
super(optionsNamesLocatorTemplate);
}
public Menu(By optionsNamesLocatorTemplate, By allOptionsNamesLocator) {
super(optionsNamesLocatorTemplate, allOptionsNamesLocator);
}
}