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 selenium3-foundation Show documentation
Show all versions of selenium3-foundation Show documentation
Selenium3 Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium 3.0 (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 {
FrameMap(ComponentContainer parent, Class containerType, By locator) {
super(parent, containerType, locator);
}
}