All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.qmetry.qaf.automation.ui.webdriver.QAFWebElement Maven / Gradle / Ivy

Go to download

Functional test automation framework for web, mobile-web, mobile native and web-service

There is a newer version: 4.0.0-RC3
Show newest version
/*******************************************************************************
 * QMetry Automation Framework provides a powerful and versatile platform to author 
 * Automated Test Cases in Behavior Driven, Keyword Driven or Code Driven approach
 *                
 * Copyright 2016 Infostretch Corporation
 *
 * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 *
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
 * OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
 *
 * You should have received a copy of the GNU General Public License along with this program in the name of LICENSE.txt in the root folder of the distribution. If not, see https://opensource.org/licenses/gpl-3.0.html
 *
 * See the NOTICE.TXT file in root folder of this source files distribution 
 * for additional information regarding copyright ownership and licenses
 * of other open source software / files used by QMetry Automation Framework.
 *
 * For any inquiry or need additional information, please contact [email protected]
 *******************************************************************************/


package com.qmetry.qaf.automation.ui.webdriver;

import java.util.List;

import org.openqa.selenium.WebElement;

import com.qmetry.qaf.automation.util.StringMatcher;

public interface QAFWebElement extends WebElement, FindsByCustomStretegy {

	// explicit wait
	void waitForVisible(long... timeout);

	void waitForNotVisible(long... timeout);

	void waitForDisabled(long... timeout);

	void waitForEnabled(long... timeout);

	void waitForPresent(long... timeout);

	void waitForNotPresent(long... timeout);

	void waitForText(String text, long... timeout);

	void waitForText(StringMatcher matcher, long... timeout);

	void waitForNotText(String text, long... timeout);

	void waitForNotText(StringMatcher matcher, long... timeout);

	void waitForValue(Object value, long... timeout);

	void waitForNotValue(Object value, long... timeout);

	void waitForSelected(long... timeout);

	void waitForNotSelected(long... timeout);

	void waitForAttribute(String attr, String value, long... timeout);

	void waitForNotAttribute(String attr, String value, long... timeout);

	void waitForAttribute(String attr, StringMatcher value, long... timeout);

	void waitForNotAttribute(String attr, StringMatcher value, long... timeout);

	void waitForCssClass(String className, long... timeout);

	void waitForNotCssClass(String className, long... timeout);

	void waitForCssStyle(String prop, String value, long... timeout);

	void waitForNotCssStyle(String prop, String value, long... timeout);
	
	/**
	 * Special method to wait for css color property. For other css properties use {@link #waitForCssStyle(String, String, String...)}
	 * @param prop css style property for color to validate. For example: color, background-color
	 * @param value expected value - valid color name or rgb or rgba or hax
	 * @param timeout optional timeout and interval
	 */
	void waitForCssStyleColor(String prop, String value, long... timeout);

	/**
	 * Special method to wait for css color property. For other css properties use {@link #waitForNotCssStyle(String, String, String...)}
	 * @param prop css style property for color to validate. For example: color, background-color
	 * @param value expected value - valid color name or rgb or rgba or hax
	 * @param timeout optional timeout and interval
	 */
	void waitForNotCssStyleColor(String prop, String value, long... timeout);

	// verifications
	boolean verifyPresent(String... label);

	boolean verifyNotPresent(String... label);

	boolean verifyVisible(String... label);

	boolean verifyNotVisible(String... label);

	boolean verifyEnabled(String... label);

	boolean verifyDisabled(String... label);

	boolean verifyText(String text, String... label);

	boolean verifyText(StringMatcher matcher, String... label);

	boolean verifyNotText(String text, String... label);

	boolean verifyNotText(StringMatcher matcher, String... label);

	 boolean verifyValue(T t, String... label);

	 boolean verifyNotValue(T t, String... label);

	boolean verifySelected(String... label);

	boolean verifyNotSelected(String... label);

	boolean verifyAttribute(String attr, String value, String... label);

	boolean verifyAttribute(String attr, StringMatcher matcher, String... label);

	boolean verifyNotAttribute(String attr, String value, String... label);

	boolean verifyNotAttribute(String attr, StringMatcher matcher, String... label);

	boolean verifyCssClass(String className, String... label);

	boolean verifyNotCssClass(String className, String... label);

	boolean verifyCssStyle(String prop, String value, String... label);

	boolean verifyNotCssStyle(String prop, String value, String... label);
	
	/**
	 * Special method to validate css color property. For other css properties use {@link #verifyCssStyle(String, String, String...)}
	 * @param prop css style property for color to validate. For example: color, background-color
	 * @param value expected value - valid color name or rgb or rgba or hax
	 * @param label optional label to use in report. If not provided it will use description if available
	 */
	boolean verifyCssStyleColor(String prop, String value, String... label);

	/**
	 * Special method to validate css color property. For other css properties use {@link #verifyNotCssStyle(String, String, String...)}
	 * @param prop css style property for color to validate. For example: color, background-color
	 * @param value expected value - valid color name or rgb or rgba or hax
	 * @param label optional label to use in report. If not provided it will use description if available
	 */
	boolean verifyNotCssStyleColor(String prop, String value, String... label);

	// preconditions
	void givenPresent();

	void givenNotPresent(String... label);

	// assertions
	void assertPresent(String... label);

	void assertNotPresent(String... label);

	void assertVisible(String... label);

	void assertNotVisible(String... label);

	void assertEnabled(String... label);

	void assertDisabled(String... label);

	void assertText(String text, String... label);

	void assertNotText(String text, String... label);

	void assertText(StringMatcher matcher, String... label);

	void assetNotText(StringMatcher matcher, String... label);

	 void assertValue(T t, String... label);

	 void assertNotValue(T t, String... label);

	void assertSelected(String... label);

	void assertNotSelected(String... label);

	void assertAttribute(String attr, String value, String... label);

	void assertAttribute(String attr, StringMatcher matcher, String... label);

	void assertNotAttribute(String attr, String value, String... label);

	void assertNotAttribute(String attr, StringMatcher matcher, String... label);

	void assertCssClass(String className, String... label);

	void assertNotCssClass(String className, String... label);

	void assertCssStyle(String prop, String value, String... label);

	void assertNotCssStyle(String prop, String value, String... label);
	
	/**
	 * Special method to validate css color property. For other css properties use {@link #assertCssStyle(String, String, String...)}
	 * @param prop css style property for color to validate. For example: color, background-color
	 * @param value expected value - valid color name or rgb or rgba or hax
	 * @param label optional label to use in report. If not provided it will use description if available
	 */
	void assertCssStyleColor(String prop, String value, String... label);

	/**
	 * Special method to validate css color property. For other css properties use {@link #assertNotCssStyle(String, String, String...)}
	 * @param prop css style property for color to validate. For example: color, background-color
	 * @param value expected value - valid color name or rgb or rgba or hax
	 * @param label optional label to use in report. If not provided it will use description if available
	 */
	void assertNotCssStyleColor(String prop, String value, String... label);

	// other
	void setAttribute(String attr, String value);

	boolean isPresent();

	QAFWebElement findElement(String loc);

	List findElements(String loc);

	 T executeScript(String sctipt);

	 T executeAsyncScript(String sctipt);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy