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

bichromate.sample.pageDeclaration.samplePageDeclaration 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
/*
 * samplePageDeclaration.java	1.0 2013/01/24
 *
 * 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.sample.pageDeclaration;

import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;

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

import bichromate.baseObjectTypes.sTestButtonObject;
import bichromate.baseObjectTypes.sTestTextBoxObject;
import bichromate.core.sTestBasePageDeclaration;


/**
 * This class Demonstrates samplePageDeclaration().
 * 
changePasswordPage encapsulates all the Selenium elements on the loginPage. *
When building new testNG tests, the tester will create a new sTestWebDriverFactory *
and create this page using the newly created a new sTestWebDriverFactory *
EXAMPLE: sTestWebDriverFactory driver = new sTestWebDriverFactory(remote,version,platform,browser,setupString) *
EXAMPLE: driver.getLoginPage().pageURL * @see sTestBasePageDeclaration * @author davidwramer * @version 1.0 */ @SuppressWarnings("unused") public class samplePageDeclaration extends sTestBasePageDeclaration{ String searchField = "searchField"; String searchButton = "searchButton"; static ResourceBundle resources; // // Objects // private sTestTextBoxObject searchFieldElement = null; private sTestButtonObject searchButtonElement = null; static { try { resources = ResourceBundle.getBundle("pageDeclarations.samplePageDeclaration",Locale.getDefault()); } catch (MissingResourceException mre) { System.out.println("samplePageDeclaration.properties not found: "+mre); System.exit(0); } } /** * method This class Demonstrates samplePageDeclaration(). * The samplePageDeclaration uses yahoo.com landing page * @param driver - webDriver * @author davidwramer * @version 1.0 */ public samplePageDeclaration(WebDriver driver){ super(driver,resources); pageTitle = new String(resources.getString("pageTitle")); pageURL = new String(resources.getString("pageURL")); } /** * method This class Demonstrates getSearchField(). * The getSearchField uses yahoo.com landing page * @return sTestTextBoxObject - text box object * @author davidwramer * @version 3.0 */ public sTestTextBoxObject getSearchField(){ if(null == searchFieldElement) searchFieldElement = new sTestTextBoxObject(driver,findElement(searchField),"samplePageDeclaration",POMLOGGER); return searchFieldElement; } /** * method This class Demonstrates getSearchButton(). * The samplePageDeclaration uses yahoo.com landing page * @return sTestButtonObject - button object * @author davidwramer * @version 3.0 */ public sTestButtonObject getSearchButton(){ if(null == searchFieldElement) searchButtonElement = new sTestButtonObject(driver,findElement(searchButton),"samplePageDeclaration",POMLOGGER); return searchButtonElement; } @Override public boolean isAjaxLoaded() { // TODO Auto-generated method stub return true; } }// samplePageDeclaration




© 2015 - 2024 Weber Informatics LLC | Privacy Policy