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

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

Go to download

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

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

import org.openqa.selenium.By;

/**
 * This class defines a map for Selenium Foundation shadow root 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 shadow root objects collected by this map */ public class ShadowRootMap extends ContainerMap { /** * Constructor for shadow root map with parent, type, and locator * * @param parent parent container * @param containerType container type * @param locator container context element locator */ ShadowRootMap(final ComponentContainer parent, final Class containerType, final By locator) { super(parent, containerType, locator); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy