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

bichromate.baseObjectTypes.sTestLinkObject Maven / Gradle / Ivy

Go to download

Java, Selenium, Appium, Winium, Extend, and TestNG automated testing framework. Bichromate integrates the best of these frameworks and takes automation to the next level. With Bichromate there is one function call that builds any type of Web,IOS Mobile, Android, and Windows App driver on any platform (Windows, Mac, Linux). From Local web drivers, to SauceLabs, Browserstack, and Selenium grid. Build data driven tests is never easier. Bichromate also gives you built in Factories that, access DBs, Video Capture, FTP, POM Generation, Hilite element.

There is a newer version: 3.13
Show newest version
/*
 * sTestLinkObject.java	1.0 2017/06/01
 *
 * Copyright (c) 2001 by David Ramer, Inc. All Rights Reserved.
 *
 * David Ramer grants you ("Licensee") a non-exclusive, royalty free, license to use,
 * modify and redistribute this software in source and binary code form,
 * provided that i) this copyright notice and license appear on all copies of
 * the software; and ii) Licensee does not utilize the software in a manner
 * which is disparaging to David Ramer.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
 * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
 * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. David Ramer AND ITS LICENSORS SHALL NOT BE
 * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
 * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL David Ramer OR ITS
 * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
 * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
 * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
 * OR INABILITY TO USE SOFTWARE, EVEN IF DRamer HAS BEEN ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 *
 * This software is not designed or intended for use in on-line control of
 * aircraft, air traffic, aircraft navigation or aircraft communications; or in
 * the design, construction, operation or maintenance of any nuclear
 * facility. Licensee represents and warrants that it will not use or
 * redistribute the Software for such purposes.
 */

package bichromate.baseObjectTypes;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

import bichromate.core.pageObjectModelLogFactory;

public class sTestLinkObject extends sTestBaseObjectType {
	
	
	public sTestLinkObject(WebDriver driver,WebElement element, String PageObject,pageObjectModelLogFactory myLogger){ 
		myDriver = driver;
		this.element = element;
		pageObjectName = new String(PageObject);
		myPOMLogger = myLogger;
	}
	

	/**
	 * This method demonstrates sTestButtonObjectDisplayed().
	 * 
verify the search button is displayed *
* @return boolean - true if click was succeful * @author dramer * @version 3.0 */ public boolean clicksTestLinkObject() { try{ if(null != element){ element.click(); return true; }else{ myPOMLogger.enterSevereLog(pageObjectName +" : clicksTestLinkObject element not found "); } }catch (Exception e){ myPOMLogger.enterSevereLog(pageObjectName +" : clicksTestLinkObject element not found "); } return false; }//clicksTestLinkObject }//sTestLinkObject




© 2015 - 2024 Weber Informatics LLC | Privacy Policy