-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: pom.xml: bumped version to 2.0.0
- Loading branch information
Showing
61 changed files
with
1,225 additions
and
773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
# This file contains properties that will be read by Neodymium to alter properties of test execution | ||
# All duration and timeout values are expected to be expressed in milliseconds | ||
|
||
# These are default values for available properties. In order to change a value uncomment the line and change its value. | ||
|
||
############################# | ||
# | ||
# Site properties | ||
# | ||
############################# | ||
# | ||
# The URL of the web site to test | ||
# neodymium.url = ${neodymium.url.protocol}://${neodymium.url.host}${neodymium.url.path} | ||
# | ||
# The protocol used to access the site | ||
# neodymium.url.protocol = | ||
# | ||
# The host encoded in the URL | ||
# neodymium.url.host = | ||
# | ||
# The path on the site that is used as test entry point | ||
# neodymium.url.path = / | ||
# | ||
# The site/channel part of the url | ||
# neodymium.url.site = | ||
# | ||
######### | ||
# | ||
# Localization | ||
# | ||
######### | ||
# | ||
# The locale that should be used to lookup translations in localization feature | ||
# neodymium.locale = en_US | ||
# | ||
# Path to the yaml formatted file that contains localized (translated) data for the site | ||
# neodymium.localization.file = config/localization.yaml | ||
# | ||
############################# | ||
# | ||
# Basic authentication properties | ||
# | ||
############################# | ||
# | ||
# Username that should be used for basic authentication | ||
# neodymium.basicauth.username = | ||
# | ||
# Password that should be used for basic authentication | ||
# neodymium.basicauth.password = | ||
# | ||
############################# | ||
# | ||
# Selenide properties | ||
# | ||
############################# | ||
# | ||
# These properties are used to configure Selenide (This is a global setting and has effect on every element selection) | ||
# | ||
# How long should Selenide wait to match a condition | ||
# neodymium.selenide.timeout = 3000 | ||
# | ||
############################# | ||
# | ||
# Debugging properties | ||
# | ||
############################# | ||
# | ||
# Should elements highlighted that are selected by Selenide | ||
# neodymium.debugUtils.highlight = false | ||
# | ||
# How long should an element be highlighted | ||
# neodymium.debugUtils.highlight.duration = 100 | ||
# | ||
# How to display test execution in Eclipse JUnit view. tree - a hierarchical representation, flat - a flat list of tests | ||
# neodymium.junit.viewmode = tree | ||
# | ||
############################# | ||
# | ||
# Neodymium context properties | ||
# | ||
############################# | ||
# The following setting reassemble responsive design breakpoints. They determine at which page width a site is considered to be displayed on a small, medium, large oder extra large device. | ||
# You can use the by calling e.g. Neodymium.isSmallDesktop() | ||
# | ||
# neodymium.context.device.breakpoint.small = 544 | ||
# neodymium.context.device.breakpoint.medium = 769 | ||
# neodymium.context.device.breakpoint.large = 992 | ||
# neodymium.context.device.breakpoint.xlarge = 1200 | ||
# | ||
############################# | ||
# | ||
# JavaScriptUtils properties | ||
# | ||
############################# | ||
# The following properties are taken into account if you use functions form the JavaScripUtils class. | ||
# | ||
# neodymium.javaScriptUtils.timeout = 2000 | ||
# neodymium.javaScriptUtils.pollingInterval = 200 | ||
# neodymium.javaScriptUtils.loading.jQueryIsRequired = true | ||
# neodymium.javaScriptUtils.loading.animationSelector = [String] | ||
# | ||
############################# | ||
# | ||
# SelenidetAddons properties | ||
# | ||
############################# | ||
# The following properties are taken into account if you use functions form the SelenidUtils class. | ||
# | ||
# How often should Selenide try to match a condition if the element is affected by staleness | ||
# neodymium.selenideAddons.staleElement.retry.count = 3 | ||
# | ||
# How long should Selenide wait between retries in case of element staleness | ||
# neodymium.selenideAddons.staleElement.retry.timeout = 500 | ||
|
||
############################# | ||
# | ||
# AllureAddons properties | ||
# | ||
############################# | ||
# The following properties are taken into account if you use functions form the AllureAddons class. | ||
# | ||
# Whether or not a screenshot should be taken per step | ||
# neodymium.allureAddons.screenshots.perstep.always = false | ||
# | ||
############################# | ||
# | ||
# DataUtils properties | ||
# | ||
############################# | ||
# The following properties are taken into account if you use functions form the DataUtils class. | ||
# | ||
######### | ||
# | ||
# E-Mail generator properties | ||
# | ||
######### | ||
# | ||
# The domain used for the generated email address | ||
# neodymium.dataUtils.email.domain = example.com | ||
# | ||
# The prefix used in email address generation prefix<generated>@domain | ||
# neodymium.dataUtils.email.local.prefix = test | ||
# | ||
######### | ||
# | ||
# Password generator properties | ||
# | ||
######### | ||
# | ||
# The amount of capital letters | ||
# neodymium.dataUtils.password.uppercaseCharAmount = 2 | ||
# | ||
# The amount of small letters | ||
# neodymium.dataUtils.password.lowercaseCharAmount = 5 | ||
# | ||
# The amount of digits | ||
# neodymium.dataUtils.password.digitAmount = 2 | ||
# | ||
# The amount of special characters | ||
# neodymium.dataUtils.password.specialCharAmount = 2 | ||
# | ||
# The special characters that should be used | ||
# neodymium.dataUtils.password.specialChars = +-#$%%&.;,_ | ||
# | ||
############################# | ||
# | ||
# Proxy configuration properties | ||
# | ||
############################# | ||
# HTTP proxy settings. Specify host and port of the proxy server and whether it should be used at all. | ||
# If the proxy requires user authentication, make sure to provide the credentials needed. | ||
# You may also configure a comma separated list of hosts that can be used directly, thus bypassing the proxy. | ||
# Note that the host definitions are interpreted as regular expressions so ensure proper use of escape characters. | ||
# | ||
# Decide whether or not a proxy is used | ||
# neodymium.proxy = false | ||
# | ||
# The host of the proxy | ||
# neodymium.proxy.host = 127.0.0.1 | ||
# | ||
# The host of the proxy | ||
# neodymium.proxy.port = 8888 | ||
# | ||
# The host of the proxy | ||
# neodymium.proxy.bypassForHosts = localhost,127\\.0\\.0\\.1,^192[.]168 | ||
# | ||
# The socket username of the proxy | ||
# neodymium.proxy.socket.userName = | ||
# | ||
# The socket password of the proxy | ||
# neodymium.proxy.socket.password = | ||
# | ||
# The socket version of the proxy | ||
# neodymium.proxy.socket.version = | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.