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

com.hubspot.chrome.devtools.client.core.page.FrameNavigatedEvent Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.page;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Fired once navigation of the frame has completed. Frame is now associated with the new loader.
 */
public final class FrameNavigatedEvent extends Event {
  private Frame frame;

  @JsonCreator
  public FrameNavigatedEvent(@JsonProperty("frame") Frame frame) {
    this.frame = frame;
  }

  public Frame getFrame() {
    return frame;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy