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

com.applitools.eyes.playwright.PlaywrightEnvironmentVersions Maven / Gradle / Ivy

There is a newer version: 5.70.6
Show newest version
package com.applitools.eyes.playwright;

import com.applitools.utils.EnvironmentVersions;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.playwright.Playwright;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class PlaywrightEnvironmentVersions extends EnvironmentVersions {

    @Override
    public String getName() {
        return "eyes-playwright-java5";
    }

    @JsonProperty("playwright")
    public String getPlaywright() {
        Class clazz = Playwright.class;
        String className = clazz.getSimpleName() + ".class";
        String classPath = clazz.getResource(className).toString();
        if (classPath.startsWith("jar")) {
            Pattern pattern = Pattern.compile("\\d+\\.\\d+\\.\\d+");
            Matcher matcher = pattern.matcher(classPath);
            if (matcher.find()) {
                return matcher.group();
            }
        }

        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy