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

com.nordstrom.automation.selenium.model.ComponentMap Maven / Gradle / Ivy

Go to download

Selenium3 Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium 3.0 (WebDriver).

There is a newer version: 1.0.4
Show newest version
package com.nordstrom.automation.selenium.model;

import org.openqa.selenium.By;

/**
 * This class defines a map for Selenium Foundation page component objects.
 * 

* NOTE: This class implements a read-only map; all methods that would alter the composition of the collection * (e.g. - {@link #put(Object, Object)}) result in {@link UnsupportedOperationException}. * * @param the class of page component objects collected by this map */ public class ComponentMap extends ContainerMap { ComponentMap(ComponentContainer parent, Class containerType, By locator) { super(parent, containerType, locator); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy