com.nordstrom.automation.selenium.model.FrameMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.model;
import org.openqa.selenium.By;
/**
* This class defines a map for Selenium Foundation frame 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 frame objects collected by this map
*/
public class FrameMap extends ContainerMap {
/**
* Constructor for frame map with parent, type, and locator
*
* @param parent parent container
* @param containerType container type
* @param locator container context element locator
*/
FrameMap(final ComponentContainer parent, final Class containerType, final By locator) {
super(parent, containerType, locator);
}
}