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

org.framework.utils.ApplicationSetUpPropertyFile Maven / Gradle / Ivy

Go to download

Jar to include in your custom framework which contains excel utilities, main controller, call application, random generation and utilities for selenium operations

There is a newer version: 1.3.19
Show newest version
package org.framework.utils;

import ru.yandex.qatools.properties.PropertyLoader;
import ru.yandex.qatools.properties.annotations.Property;
import ru.yandex.qatools.properties.annotations.Resource;

@Resource.File("resources/ApplicationSetUp.properties")
public class ApplicationSetUpPropertyFile {


	public ApplicationSetUpPropertyFile() {
		PropertyLoader.populate(this);
	}

	@Property("url")
    private String url;

	
	@Property("productName")
    private String productName;
	

	public String getUrl() {
		return url;
	}
	
	public String getProductName() {
		return productName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy