com.mark59.core.utils.PropertiesKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mark59-core Show documentation
Show all versions of mark59-core Show documentation
Common core components of the mark59 framework.
/*
* Copyright 2019 Insurance Australia Group Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mark59.core.utils;
/**
* The current list of properties used by the Mark59 framework are defined here.
*
* mark59.screenshot.directory : value defines the directory where transaction-level logging will occur
* mark59.selenium.driver.path.chrome : location of the chrome driver executable
* mark59.selenium.driver.path.firefox : location of the geokodriver executable
* mark59.server.profiles.excel.file.path : location of a excel file to be used for server metrics capture
*
*
* @author Michael Cohen
* @author Philip Webb
* Written: Australian Winter 2019
*/
public class PropertiesKeys {
private PropertiesKeys() {
}
public static final String MARK59_PROP_SCREENSHOT_DIRECTORY = "mark59.screenshot.directory";
public static final String MARK59_PROP_DRIVER_CHROME = "mark59.selenium.driver.path.chrome";
public static final String MARK59_PROP_DRIVER_FIREFOX = "mark59.selenium.driver.path.firefox";
public static final String MARK59_PROP_SERVER_PROFILES_EXCEL_FILE_PATH = "mark59.server.profiles.excel.file.path";
public static final String[] MARK59_PROPERTY_KEYS = {
MARK59_PROP_SCREENSHOT_DIRECTORY,
MARK59_PROP_DRIVER_CHROME,
MARK59_PROP_DRIVER_FIREFOX,
MARK59_PROP_SERVER_PROFILES_EXCEL_FILE_PATH};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy