
com.github.arachnidium.model.support.HowToGetByFrames Maven / Gradle / Ivy
The newest version!
package com.github.arachnidium.model.support;
import java.util.ArrayList;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.TargetLocator;
import org.openqa.selenium.WebElement;
/**
* This manages switching between frames on a browser page or web view of a hybrid mobile
* application
*
* @see TargetLocator
*/
public class HowToGetByFrames {
final static ArrayList> availableClassesOfFrameIdentifiers = new ArrayList>() {
private static final long serialVersionUID = 1L;
{
add(String.class);
add(Integer.class);
add(By.class);
add(WebElement.class);
}
};
final ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy