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

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

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

public class Cookie {
    private String name;
    private String value;

    public Cookie(String name, String value) {
        this.name = name;
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy