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

com.seleniumtests.util.har.Page Maven / Gradle / Ivy

The newest version!
package com.seleniumtests.util.har;

import java.util.ArrayList;
import java.util.List;

public class Page {
    private String startedDateTime;

    private String id;
    private String title;
    private List pageTimings = new ArrayList<>();

    public Page(String startedDateTime, String id, String title) {
        this.startedDateTime = startedDateTime;
        this.id = id;
        this.title = title;
    }


    public String getId() {
        return id;
    }

    public String getStartedDateTime() {
        return startedDateTime;
    }

    public String getTitle() {
        return title;
    }

    public List getPageTimings() {
        return pageTimings;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy