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

com.applitools.eyes.selenium.universal.dto.FrameNameOrId 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.IFrame;
import com.fasterxml.jackson.annotation.JsonInclude;

/**
 * frameNameOrId
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FrameNameOrId implements IFrame {
  private String frame;

  public FrameNameOrId(String frame) {
    this.frame = frame;
  }

  public FrameNameOrId() {
  }

  public String getFrame() {
    return frame;
  }

  public void setFrame(String frame) {
    this.frame = frame;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy