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

com.browserup.bup.assertion.supplier.CurrentStepHarEntriesSupplier Maven / Gradle / Ivy

The newest version!
package com.browserup.bup.assertion.supplier;

import com.browserup.bup.assertion.model.filter.AssertionFilterInfo;
import com.browserup.harreader.model.Har;
import com.browserup.harreader.model.HarEntry;

import java.util.List;

public class CurrentStepHarEntriesSupplier extends HarEntriesSupplier {
    public CurrentStepHarEntriesSupplier(Har har) {
        super(har, new AssertionFilterInfo());
    }

    @Override
    public List get() {
        return getHar().getLog().getEntries();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy