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

com.applitools.eyes.selenium.universal.dto.FrameLocatorDto Maven / Gradle / Ivy

There is a newer version: 5.73.0
Show newest version
package com.applitools.eyes.selenium.universal.dto;

import com.applitools.eyes.universal.dto.SelectorRegionDto;
import com.fasterxml.jackson.annotation.JsonInclude;

/**
 * frame locator dto
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FrameLocatorDto {
  private SelectorRegionDto selector;
  private ElementRegionDto element;
  private String frameNameOrId;
  private Integer frameIndex;

  public String getFrameNameOrId() {
    return frameNameOrId;
  }

  public void setFrameNameOrId(String frameNameOrId) {
    this.frameNameOrId = frameNameOrId;
  }

  public Integer getFrameIndex() {
    return frameIndex;
  }

  public void setFrameIndex(Integer frameIndex) {
    this.frameIndex = frameIndex;
  }

  public SelectorRegionDto getSelector() {
    return selector;
  }

  public void setSelector(SelectorRegionDto selector) {
    this.selector = selector;
  }

  public ElementRegionDto getElement() {
    return element;
  }

  public void setElement(ElementRegionDto element) {
    this.element = element;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy