quke 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +4 -4
- data/Rakefile +9 -7
- data/exe/quke +6 -2
- data/lib/features/support/after_hook.rb +11 -6
- data/lib/features/support/after_step_hook.rb +3 -1
- data/lib/features/support/before_hook.rb +6 -4
- data/lib/features/support/env.rb +17 -20
- data/lib/quke.rb +12 -7
- data/lib/quke/browserstack_configuration.rb +19 -18
- data/lib/quke/browserstack_status_reporter.rb +6 -4
- data/lib/quke/configuration.rb +30 -26
- data/lib/quke/cuke_runner.rb +6 -4
- data/lib/quke/driver_configuration.rb +12 -14
- data/lib/quke/driver_registration.rb +8 -6
- data/lib/quke/version.rb +3 -1
- data/spec/quke/browserstack_configuration_spec.rb +262 -0
- data/spec/quke/browserstack_status_reporter_spec.rb +129 -0
- data/spec/quke/configuration_spec.rb +270 -0
- data/spec/quke/cuke_runner_spec.rb +36 -0
- data/spec/quke/driver_configuration_spec.rb +279 -0
- data/spec/quke/driver_registration_spec.rb +33 -0
- data/spec/quke/quke_spec.rb +18 -0
- data/spec/spec_helper.rb +40 -0
- data/spec/support/helpers.rb +48 -0
- data/spec/support/simplecov.rb +29 -0
- data/spec/support/webmock.rb +3 -0
- metadata +97 -58
- data/.browserstack.yml +0 -11
- data/.codeclimate.yml +0 -19
- data/.config.example.yml +0 -198
- data/.gitignore +0 -60
- data/.rspec +0 -2
- data/.rubocop.yml +0 -61
- data/.travis.yml +0 -55
- data/CHANGELOG.md +0 -170
- data/Gemfile +0 -4
- data/quke.gemspec +0 -105
- data/quke.png +0 -0
data/.browserstack.yml
DELETED
data/.codeclimate.yml
DELETED
data/.config.example.yml
DELETED
@@ -1,198 +0,0 @@
|
|
1
|
-
# The standard place to add your features and step_definitions is in a folder
|
2
|
-
# named 'features' at the root of the project. However if you'd like to name
|
3
|
-
# this folder something else, you can tell Quke what the new name is here.
|
4
|
-
# The default is features
|
5
|
-
features_folder: 'cukes'
|
6
|
-
|
7
|
-
# Normally Capybara expects to be testing an in-process Rack application, but
|
8
|
-
# we're using it to talk to a remote host. Users of Quke can set what this
|
9
|
-
# will be by simply setting `app_host`. You can then use it directly using
|
10
|
-
# Capybara `visit('/Main_Page')` or `visit('/')` rather than having to repeat
|
11
|
-
# the full url each time
|
12
|
-
app_host: 'https://en.wikipedia.org/wiki'
|
13
|
-
|
14
|
-
# Tells Quke which browser to use for testing. Choices are firefox, chrome
|
15
|
-
# browserstack and phantomjs, with the default being phantomjs
|
16
|
-
driver: chrome
|
17
|
-
|
18
|
-
# Add a pause (in seconds) between steps so you can visually track how the
|
19
|
-
# browser is responding. Only useful if using a non-headless browser. The
|
20
|
-
# default is 0
|
21
|
-
pause: 1
|
22
|
-
|
23
|
-
# Specify whether Quke should stop all tests once an error occurs. Useful in
|
24
|
-
# Continuous Integration (CI) environments where a quick Yes/No is preferable to
|
25
|
-
# a detailed response.
|
26
|
-
stop_on_error: 1
|
27
|
-
|
28
|
-
# Capybara will attempt to find an element for a period of time, rather than
|
29
|
-
# immediately failing because the element cannot be found. This defaults to 2
|
30
|
-
# seconds. However if the site you are working with is slow or features
|
31
|
-
# elements that take some time to load you can increase this default.
|
32
|
-
max_wait_time: 5
|
33
|
-
|
34
|
-
# Tell the driver Quke is using to send a different user-agent value to the site
|
35
|
-
# under test. Useful if you want the underlying driver to spoof what kind of
|
36
|
-
# browser the request is coming from. For example you may want to pretend to be
|
37
|
-
# a mobile browser so you can check what you get back versus the desktop
|
38
|
-
# version. Or you want to pretend to be another kind of browser, because the one
|
39
|
-
# you have is not supported by the site.
|
40
|
-
user_agent: "Mozilla/5.0 (MSIE 10.0; Windows NT 6.1; Trident/5.0)"
|
41
|
-
|
42
|
-
# Currently only supported when using the phantomjs driver (ignored by the
|
43
|
-
# others). In phantomjs if a site has a javascript error we can configure it
|
44
|
-
# to throw an error which will cause the test to fail. Quke by default sets this
|
45
|
-
# to true, however you can override it by setting this flag to false.
|
46
|
-
# For example you may be dealing with a legacy site and JavaScript errors
|
47
|
-
# are out of your scope. You still want to test other aspects of the site
|
48
|
-
# but not let these errors prevent you from using phantomjs.
|
49
|
-
javascript_errors: false
|
50
|
-
|
51
|
-
# Anything you place under the 'custom' node in the `.config.yml` file will be
|
52
|
-
# available within your steps and page objects by calling
|
53
|
-
# `Quke::Quke.config.custom`. So using the example below we could access its
|
54
|
-
# values in the following ways
|
55
|
-
#
|
56
|
-
# Quke::Quke.config.custom["default_org_name"] # = "Testy Ltd"
|
57
|
-
# Quke::Quke.config.custom["accounts"]["account2"]["username"] # = "john.doe@example.gov.uk"
|
58
|
-
# Quke::Quke.config.custom["urls"]["front_office"] # = "http://myservice.service.gov.uk"
|
59
|
-
#
|
60
|
-
# As long as what you add is valid YAML (check with a tool like
|
61
|
-
# http://www.yamllint.com/) Quke will be able to pick it up and make it
|
62
|
-
# available in your tests.
|
63
|
-
custom:
|
64
|
-
default_org_name: "Testy Ltd"
|
65
|
-
accounts:
|
66
|
-
account1:
|
67
|
-
username: jane.doe@example.gov.uk
|
68
|
-
password: Av3rystr*ngone
|
69
|
-
account2:
|
70
|
-
username: john.doe@example.gov.uk
|
71
|
-
password: An*th3rstrongone
|
72
|
-
urls:
|
73
|
-
front_office: "http://myservice.service.gov.uk"
|
74
|
-
back_office: "http://admin-myservice.service.gov.uk"
|
75
|
-
|
76
|
-
# If you are running Quke behind a proxy you can configure the proxy details
|
77
|
-
# here. You'll need either the hostname or IP of the proxy server (don't include
|
78
|
-
# the http:// bit) and the port number (typically 8080). Currently proxy
|
79
|
-
# settings will only be applied if you are using the PhantomJS, Chrome or
|
80
|
-
# Firefox drivers.
|
81
|
-
proxy:
|
82
|
-
host: '10.10.2.70'
|
83
|
-
port: 8080
|
84
|
-
# In some cases you may also need to tell the browser (driver) not to use the
|
85
|
-
# proxy for local or specific connections. For this simply provide a comma
|
86
|
-
# separated list of addresses.
|
87
|
-
#
|
88
|
-
# IMPORTANT NOTE! phantomjs does not currently support this option. If you
|
89
|
-
# have to go via a proxy server for external connections, but not local ones
|
90
|
-
# you will be limited to using either the Chrome or Firefox drivers.
|
91
|
-
no_proxy: '127.0.0.1,192.168.0.1'
|
92
|
-
|
93
|
-
# If you select the browserstack driver, there are a number of options you
|
94
|
-
# can pass through to setup your browserstack tests, username and auth_key
|
95
|
-
# being the critical ones.
|
96
|
-
# Please see https://www.browserstack.com/automate/capabilities for more details
|
97
|
-
browserstack:
|
98
|
-
# To run your tests with browserstack you must provide a username and auth_key
|
99
|
-
# as a minimum.
|
100
|
-
# If you don't want to put these credentials in the config file (because you
|
101
|
-
# want to commit it to source control), Quke will also check for the existance
|
102
|
-
# of the environment variables BROWSERSTACK_USERNAME and BROWSERSTACK_AUTH_KEY
|
103
|
-
username: jdoe
|
104
|
-
auth_key: 123456789ABCDE
|
105
|
-
|
106
|
-
# If you want to use local testing you must provide a key. You can find this
|
107
|
-
# in Browserstack once logged in under settings. Its typically the same value
|
108
|
-
# as the auth_key above.
|
109
|
-
# If you don't want to put this credential in the config file (because you
|
110
|
-
# want to commit it to source control), Quke will also check for the existance
|
111
|
-
# of the environment variable BROWSERSTACK_LOCAL_KEY
|
112
|
-
local_key: 123456789ABCDE
|
113
|
-
|
114
|
-
# Anything set under capabilities will be passed directly by Quke to
|
115
|
-
# browserstack as means of configuring the test.
|
116
|
-
# So the config keys (e.g. build, project, name) you set should match a real
|
117
|
-
# browserstack capability, and the value exist in the range it expects. See
|
118
|
-
# for further reference on browserstack capabilities
|
119
|
-
# https://www.browserstack.com/automate/capabilities
|
120
|
-
# https://www.browserstack.com/automate/ruby#configure-capabilities
|
121
|
-
capabilities:
|
122
|
-
# Keep track of all your automated tests using the build and project
|
123
|
-
# capabilities. Group your tests into builds, and builds further into
|
124
|
-
# projects
|
125
|
-
project: 'Adding browserstack support'
|
126
|
-
build: 'Version 1'
|
127
|
-
# Allows you to specify an identifier for the test run.
|
128
|
-
# If you intend to repeat a test this might not be that applicable, but in
|
129
|
-
# the case of one off tests it might be useful
|
130
|
-
name: 'Testing google search'
|
131
|
-
|
132
|
-
# To avoid invalid certificate errors while testing set acceptSslCerts to
|
133
|
-
# true. This is not listed on the general capabilities page but is here
|
134
|
-
# https://www.browserstack.com/automate/ruby#self-signed-certificates
|
135
|
-
acceptSslCerts: true
|
136
|
-
# Required if you want to generate screenshots at various steps in your test
|
137
|
-
# test. Browserstack default is false
|
138
|
-
browserstack.debug: true
|
139
|
-
# Required if you want to enable video recording during your test.
|
140
|
-
# Browserstack default is true
|
141
|
-
browserstack.video: true
|
142
|
-
# Required if you need to test a locally hosted (e.g. http://localhost:300)
|
143
|
-
# or private internal web site. Browserstack has a feature called local
|
144
|
-
# testing that Quke also supports, but to use
|
145
|
-
# - Browserstack must be your selected driver
|
146
|
-
# - You must have set local_key above
|
147
|
-
# - You must this value to true
|
148
|
-
browserstack.local: false
|
149
|
-
# Another setting not listed, setting the following will prevent any values
|
150
|
-
# you pass in, for example when filling in a form, from appearing in the
|
151
|
-
# logs. General use case is to prevent passwords being exposed, but beware
|
152
|
-
# that all input will be masked in the logs if set.
|
153
|
-
browserstack.maskSendKeys: true
|
154
|
-
|
155
|
-
# MOBILE testing and DESKTOP testing are essentially diametric; you set one
|
156
|
-
# or the other but not both. Some examples seem to put logic in place to
|
157
|
-
# test the options passed in and then set the capabilities accordingly,
|
158
|
-
# however Browserstack handles this and has what will happen documented
|
159
|
-
# https://www.browserstack.com/automate/capabilities#capabilities-parameter-override
|
160
|
-
#
|
161
|
-
# MOBILE testing
|
162
|
-
# The docs are a little confusing but essentially if you want to test against
|
163
|
-
# mobile devices you need to define 1 set of capabilities, and if desktop
|
164
|
-
# another
|
165
|
-
# -----
|
166
|
-
# OS you want to test. Accepted values are MAC, WIN8, XP, WINDOWS, ANY,
|
167
|
-
# ANDROID. Browserstack default is ANY
|
168
|
-
platform: MAC
|
169
|
-
# Browser you want to test. Accepted values firefox, chrome, internet
|
170
|
-
# explorer,safari, opera, iPad, iPhone, android. Browserstack default is
|
171
|
-
# chrome
|
172
|
-
browserName: iPhone
|
173
|
-
# Browser version you want to test. See the docs for the full list of
|
174
|
-
# available versions. Browserstack default is latest stable version of
|
175
|
-
# browser selected
|
176
|
-
version: '49'
|
177
|
-
# Device you want to test on. See the docs for the full list of available.
|
178
|
-
device: 'iPhone 5'
|
179
|
-
#
|
180
|
-
# DESKTOP testing
|
181
|
-
# -----
|
182
|
-
# OS you want to test. Accepted values are WINDOWS, OS X. If both OS and
|
183
|
-
# platform are set, OS will take precedence
|
184
|
-
os: WINDOWS
|
185
|
-
# OS version you want to test. Accepted values are
|
186
|
-
# Windows: XP, 7, 8, 8.1 and 10
|
187
|
-
# OS X: Snow Leopard, Lion, Mountain Lion, Mavericks, Yosemite, El Capitan
|
188
|
-
os_version: '8.1'
|
189
|
-
# Browser you want to test. Accepted values are Firefox, Safari, IE, Chrome,
|
190
|
-
# Opera
|
191
|
-
browser: chrome
|
192
|
-
# Browser version you want to test. See the docs for the full list of
|
193
|
-
# available versions
|
194
|
-
browser_version: '49'
|
195
|
-
# Set the resolution of VM before beginning of your test.
|
196
|
-
# See docs https://www.browserstack.com/automate/capabilities for full list
|
197
|
-
# of accepted values, as it is also OS dependent
|
198
|
-
resolution: '1024x768'
|
data/.gitignore
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
-
#
|
3
|
-
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
-
# or operating system, you probably want to add a global ignore instead:
|
5
|
-
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
-
|
7
|
-
vendor/overcommit_bundle
|
8
|
-
|
9
|
-
# Ignore ruby_mine folder
|
10
|
-
/.idea
|
11
|
-
|
12
|
-
# Ignore vscode folder
|
13
|
-
/.vscode
|
14
|
-
|
15
|
-
# Symbol tags (e.g. generated by Atom Editor)
|
16
|
-
/tags
|
17
|
-
|
18
|
-
*~
|
19
|
-
*.DS_Store
|
20
|
-
.svn
|
21
|
-
.*.swp
|
22
|
-
___*
|
23
|
-
chromedriver.log
|
24
|
-
|
25
|
-
# Ignore all logfiles and tempfiles.
|
26
|
-
*.log
|
27
|
-
/log/*
|
28
|
-
!/log/.keep
|
29
|
-
/tmp/
|
30
|
-
|
31
|
-
# Ruby debugger related files
|
32
|
-
.byebug_history
|
33
|
-
|
34
|
-
# Capybara related artifacts
|
35
|
-
capybara-*.html
|
36
|
-
output.html
|
37
|
-
|
38
|
-
# Ignore bundler config.
|
39
|
-
/.bundle/
|
40
|
-
|
41
|
-
# We ignore the Gemfile.lock in a gem
|
42
|
-
/Gemfile.lock
|
43
|
-
|
44
|
-
# When the gem is built it goes here, but we don't want to include this in
|
45
|
-
# the source code repo
|
46
|
-
/pkg/
|
47
|
-
*.gem
|
48
|
-
|
49
|
-
# Ignore folders related to documentation output
|
50
|
-
/.yardoc
|
51
|
-
/_yardoc/
|
52
|
-
/html/
|
53
|
-
/doc/
|
54
|
-
|
55
|
-
# Ignore folders related to test output
|
56
|
-
/coverage/
|
57
|
-
/spec/reports/
|
58
|
-
|
59
|
-
# Ignore your project specific .config.yml config files
|
60
|
-
*.config.yml
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
AllCops:
|
2
|
-
Exclude:
|
3
|
-
# Bin contains standard files created when gem is initialised and therefore
|
4
|
-
# they should be left as is
|
5
|
-
- 'bin/**/*'
|
6
|
-
# Exe contains standard files created when gem is initialised and therefore
|
7
|
-
# they should be left as is
|
8
|
-
- 'exe/**/*'
|
9
|
-
# Rakefile is generated when gem is initialised and therefore should be
|
10
|
-
# left as is
|
11
|
-
- 'Rakefile'
|
12
|
-
# Gemfile is generated when gem is initialised and therefore should be
|
13
|
-
# left as is
|
14
|
-
- 'Gemfile'
|
15
|
-
# Cop names are not displayed in offense messages by default. We find it
|
16
|
-
# useful to include this information so we can use it to investigate what the
|
17
|
-
# fix may be.
|
18
|
-
DisplayCopNames: true
|
19
|
-
# Style guide URLs are not displayed in offense messages by default. Again we
|
20
|
-
# find it useful to go straight to the documentation for a rule when
|
21
|
-
# investigating what the fix may be.
|
22
|
-
DisplayStyleGuide: true
|
23
|
-
|
24
|
-
# It is our opinion that code is easier to read if a white space is
|
25
|
-
# permitted between the initial declaration and the first statement. Ditto the
|
26
|
-
# last statement and the closing tag.
|
27
|
-
Layout/EmptyLinesAroundModuleBody:
|
28
|
-
Enabled: false
|
29
|
-
Layout/EmptyLinesAroundClassBody:
|
30
|
-
Enabled: false
|
31
|
-
Layout/EmptyLinesAroundBlockBody:
|
32
|
-
Enabled: false
|
33
|
-
|
34
|
-
# Rubocop appears to flag `describe` blocks which are longer than 25 lines.
|
35
|
-
# However it is our opinion that this is necessary in specs, for example when
|
36
|
-
# describing a class, the body of the describe may well exceed 25 lines.
|
37
|
-
# Therefore we have excluded this rule in the specs only.
|
38
|
-
Metrics/BlockLength:
|
39
|
-
Exclude:
|
40
|
-
- spec/quke/*.rb
|
41
|
-
|
42
|
-
# We wish we were good enough to remain within the rubocop limit of 10 lines
|
43
|
-
# however we often just seem to tip over by a few lines. Hence we have chosen
|
44
|
-
# to bump it to 15.
|
45
|
-
Metrics/MethodLength:
|
46
|
-
Max: 15
|
47
|
-
Exclude:
|
48
|
-
|
49
|
-
# It is our opinion that in the specs 80 characters is too restrictive. Due to
|
50
|
-
# the nature of some statements it can be both difficult, and make more simple
|
51
|
-
# statements complex if we are forced to split them over multiple lines.
|
52
|
-
# Therefore we have upped this limit to 120 chars in the specs only.
|
53
|
-
Metrics/LineLength:
|
54
|
-
Max: 120
|
55
|
-
Exclude:
|
56
|
-
- spec/quke/*.rb
|
57
|
-
|
58
|
-
# Disable this rubocop style because we want to make the arguments passed into
|
59
|
-
# Quke available to anywhere when the code is executed
|
60
|
-
Style/GlobalVars:
|
61
|
-
Enabled: false
|
data/.travis.yml
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
sudo: false
|
2
|
-
language: ruby
|
3
|
-
rvm:
|
4
|
-
- 2.3.1
|
5
|
-
|
6
|
-
# Travis CI clones repositories to a depth of 50 commits, which is only really
|
7
|
-
# useful if you are performing git operations.
|
8
|
-
# https://docs.travis-ci.com/user/customizing-the-build/#Git-Clone-Depth
|
9
|
-
git:
|
10
|
-
depth: 3
|
11
|
-
|
12
|
-
# enable Bundler caching
|
13
|
-
# https://docs.travis-ci.com/user/languages/ruby#Caching-Bundler
|
14
|
-
cache: bundler
|
15
|
-
|
16
|
-
# Needed as part of submitting test coverage statistics to CodeClimate as part
|
17
|
-
# of the build
|
18
|
-
# https://docs.codeclimate.com/v1.0/docs/travis-ci-test-coverage
|
19
|
-
env:
|
20
|
-
global:
|
21
|
-
- CC_TEST_REPORTER_ID=1d329b5215a2aa892214c7705d36de6e99608a8649616c93f93464aa06776f4a
|
22
|
-
|
23
|
-
# Using the ability to customise the Travis build to check for 'focus' labels
|
24
|
-
# i.e. labels used when working on a spec but which we don't want appearing in
|
25
|
-
# the final commit to master
|
26
|
-
# Reworking of http://stackoverflow.com/a/30495279/6117745
|
27
|
-
# If grep returns 0 (match found), test 0 -eq 1 will return 1.
|
28
|
-
# If grep returns 1 (no match found), test 1 -eq 1 will return 0.
|
29
|
-
# If grep returns 2 (error), test 2 -eq 1 will return 1.
|
30
|
-
before_script:
|
31
|
-
- echo "Checking for use of 'focus' labels in specs" && grep -r --include="*_spec.rb" "focus: true" spec/; test $? -eq 1
|
32
|
-
# Setup to support the CodeClimate test coverage submission
|
33
|
-
# As per CodeClimate's documentation, they suggest only running
|
34
|
-
# ./cc-test-reporter commands on travis-ci push builds only. Hence we wrap all
|
35
|
-
# the codeclimate test coverage related commands in a check that tests if we
|
36
|
-
# are in a pull request or not.
|
37
|
-
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter; fi
|
38
|
-
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then chmod +x ./cc-test-reporter; fi
|
39
|
-
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter before-build; fi
|
40
|
-
|
41
|
-
after_script:
|
42
|
-
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
|
43
|
-
|
44
|
-
deploy:
|
45
|
-
provider: rubygems
|
46
|
-
api_key:
|
47
|
-
secure: "mrNfo3ZlO4wtr7fp751jltjKZcWeFXLCxxVDHqJVnkdAKpDcbo99Phlq9+fh5Q/o8gIJ4jKQybvr/Zu5t8mrWYJKKLlsUi3UThJG5hOg64ynJKy3jqtU45uCGOc33oBhQAqHTfDI+DZxQTGs2TepoqdyxsSzki
|
48
|
-
s9TRj+qyeE2HSO+yz5Qyjwql6o5k9xP82uBFaQI0WKqKdTtdNFv5LZ3EZaRWtyM/jGsunaNAYscDOl3cYN1sXlq+wfCTRvjMGmcppdbsaczQNQdIkXBPZEkydO7FdnSwUFuwm30BP0OBks5myB7oHWbbe0p/YRsUbjLF0dVfn
|
49
|
-
AlSERSwhkpMOU1BpK4/vwPBoR8yzgfZG4UZAZQ6hCMtRj+2usKWcI4buryeD+iPDrkVX9FjziOC3OFSbMzo/ojYlkLjvvXuUcTAmWZr0V/VP1x7RAiHNA+Y7EqYRJFJcEE5Av7Yn+hgi8fUtLyiSDLOb4bGJ2fe9R3YeZQ1ge
|
50
|
-
pvnarjriXfNZul3K1tP21/oVeXwCRuOjPMxwUmEsPCCjdIu/44U5CvGRbaqJXAqYJm71u+Y96RfkjytRnLmAc13nIBiFCUqUyoab4GIsy9AZ4TzE9ROGwLTC3y05gMVlYVJk4GTtVCjJwqNB2LWRXo/PseWaDdRZYmnNTr5wI
|
51
|
-
kB5wbWRtEYUdIOb70c="
|
52
|
-
gem: quke
|
53
|
-
on:
|
54
|
-
tags: true
|
55
|
-
repo: DEFRA/quke
|
data/CHANGELOG.md
DELETED
@@ -1,170 +0,0 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## [v0.5.0](https://github.com/DEFRA/quke/tree/v0.5.0) (2017-12-06)
|
4
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.4.0...v0.5.0)
|
5
|
-
|
6
|
-
**Merged pull requests:**
|
7
|
-
|
8
|
-
- Add support for browserstack local testing [\#69](https://github.com/DEFRA/quke/pull/69) ([Cruikshanks](https://github.com/Cruikshanks))
|
9
|
-
- Update CHANGELOG for 0.4.0 release [\#68](https://github.com/DEFRA/quke/pull/68) ([Cruikshanks](https://github.com/Cruikshanks))
|
10
|
-
|
11
|
-
## [v0.4.0](https://github.com/DEFRA/quke/tree/v0.4.0) (2017-12-04)
|
12
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.3.2...v0.4.0)
|
13
|
-
|
14
|
-
**Merged pull requests:**
|
15
|
-
|
16
|
-
- More flexibility setting browserstack capabilities [\#67](https://github.com/DEFRA/quke/pull/67) ([Cruikshanks](https://github.com/Cruikshanks))
|
17
|
-
- \[ci skip\] Update CHANGELOG.md [\#66](https://github.com/DEFRA/quke/pull/66) ([Cruikshanks](https://github.com/Cruikshanks))
|
18
|
-
|
19
|
-
## [v0.3.2](https://github.com/DEFRA/quke/tree/v0.3.2) (2017-06-12)
|
20
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.3.1...v0.3.2)
|
21
|
-
|
22
|
-
**Closed issues:**
|
23
|
-
|
24
|
-
- Enable ability to override driver settings [\#58](https://github.com/DEFRA/quke/issues/58)
|
25
|
-
|
26
|
-
**Merged pull requests:**
|
27
|
-
|
28
|
-
- Add option to override js\_errors for phantomjs [\#65](https://github.com/DEFRA/quke/pull/65) ([Cruikshanks](https://github.com/Cruikshanks))
|
29
|
-
- \[ci skip\] Updating CHANGELOG.md [\#63](https://github.com/DEFRA/quke/pull/63) ([Cruikshanks](https://github.com/Cruikshanks))
|
30
|
-
- Update version number \(forgot during last change!\) [\#62](https://github.com/DEFRA/quke/pull/62) ([Cruikshanks](https://github.com/Cruikshanks))
|
31
|
-
|
32
|
-
## [v0.3.1](https://github.com/DEFRA/quke/tree/v0.3.1) (2017-06-12)
|
33
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.3.0...v0.3.1)
|
34
|
-
|
35
|
-
**Merged pull requests:**
|
36
|
-
|
37
|
-
- Refactor some proxy logic to make code simpler [\#61](https://github.com/DEFRA/quke/pull/61) ([Cruikshanks](https://github.com/Cruikshanks))
|
38
|
-
- Add ability to set user-agent to use [\#60](https://github.com/DEFRA/quke/pull/60) ([Cruikshanks](https://github.com/Cruikshanks))
|
39
|
-
- \[ci skip\] Updating CHANGELOG.md [\#56](https://github.com/DEFRA/quke/pull/56) ([Cruikshanks](https://github.com/Cruikshanks))
|
40
|
-
|
41
|
-
## [v0.3.0](https://github.com/DEFRA/quke/tree/v0.3.0) (2017-03-07)
|
42
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.8...v0.3.0)
|
43
|
-
|
44
|
-
**Merged pull requests:**
|
45
|
-
|
46
|
-
- Add ability to pass in custom values via config [\#55](https://github.com/DEFRA/quke/pull/55) ([Cruikshanks](https://github.com/Cruikshanks))
|
47
|
-
- Fix missing documentation for max\_wait\_time [\#54](https://github.com/DEFRA/quke/pull/54) ([Cruikshanks](https://github.com/Cruikshanks))
|
48
|
-
- Expose Capybara default\_max\_wait\_time config value [\#53](https://github.com/DEFRA/quke/pull/53) ([Cruikshanks](https://github.com/Cruikshanks))
|
49
|
-
|
50
|
-
## [v0.2.8](https://github.com/DEFRA/quke/tree/v0.2.8) (2017-01-20)
|
51
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.7...v0.2.8)
|
52
|
-
|
53
|
-
**Closed issues:**
|
54
|
-
|
55
|
-
- Handling tests using javascript during headless testing [\#27](https://github.com/DEFRA/quke/issues/27)
|
56
|
-
|
57
|
-
**Merged pull requests:**
|
58
|
-
|
59
|
-
- Update EA references after org name change [\#52](https://github.com/DEFRA/quke/pull/52) ([Cruikshanks](https://github.com/Cruikshanks))
|
60
|
-
- \[ci skip\] Updating CHANGELOG.md [\#51](https://github.com/DEFRA/quke/pull/51) ([Cruikshanks](https://github.com/Cruikshanks))
|
61
|
-
- Add support 4 setting 'no proxy' arg. in drivers [\#49](https://github.com/DEFRA/quke/pull/49) ([Cruikshanks](https://github.com/Cruikshanks))
|
62
|
-
|
63
|
-
## [v0.2.7](https://github.com/DEFRA/quke/tree/v0.2.7) (2016-12-13)
|
64
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.6...v0.2.7)
|
65
|
-
|
66
|
-
## [v0.2.6](https://github.com/DEFRA/quke/tree/v0.2.6) (2016-11-29)
|
67
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.5...v0.2.6)
|
68
|
-
|
69
|
-
**Closed issues:**
|
70
|
-
|
71
|
-
- Ability to specify a proxy for each driver [\#46](https://github.com/DEFRA/quke/issues/46)
|
72
|
-
- focus label left against rspec tests stops all tests running [\#43](https://github.com/DEFRA/quke/issues/43)
|
73
|
-
|
74
|
-
**Merged pull requests:**
|
75
|
-
|
76
|
-
- Update version for merge of proxy server support [\#48](https://github.com/DEFRA/quke/pull/48) ([Cruikshanks](https://github.com/Cruikshanks))
|
77
|
-
- Add support for proxy servers [\#47](https://github.com/DEFRA/quke/pull/47) ([Cruikshanks](https://github.com/Cruikshanks))
|
78
|
-
- \[ci skip\] Updating CHANGELOG.md [\#45](https://github.com/DEFRA/quke/pull/45) ([Cruikshanks](https://github.com/Cruikshanks))
|
79
|
-
|
80
|
-
## [v0.2.5](https://github.com/DEFRA/quke/tree/v0.2.5) (2016-11-28)
|
81
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.4...v0.2.5)
|
82
|
-
|
83
|
-
**Closed issues:**
|
84
|
-
|
85
|
-
- Don't use driver as an assumption of running on CI [\#41](https://github.com/DEFRA/quke/issues/41)
|
86
|
-
|
87
|
-
**Merged pull requests:**
|
88
|
-
|
89
|
-
- Fix rspec focus label left in tests [\#44](https://github.com/DEFRA/quke/pull/44) ([Cruikshanks](https://github.com/Cruikshanks))
|
90
|
-
|
91
|
-
## [v0.2.4](https://github.com/DEFRA/quke/tree/v0.2.4) (2016-11-28)
|
92
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.3...v0.2.4)
|
93
|
-
|
94
|
-
**Closed issues:**
|
95
|
-
|
96
|
-
- Launchy showing blank pages on error [\#39](https://github.com/DEFRA/quke/issues/39)
|
97
|
-
|
98
|
-
**Merged pull requests:**
|
99
|
-
|
100
|
-
- Change after\_hook error to use config not assume [\#42](https://github.com/DEFRA/quke/pull/42) ([Cruikshanks](https://github.com/Cruikshanks))
|
101
|
-
|
102
|
-
## [v0.2.3](https://github.com/DEFRA/quke/tree/v0.2.3) (2016-10-05)
|
103
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.2...v0.2.3)
|
104
|
-
|
105
|
-
**Merged pull requests:**
|
106
|
-
|
107
|
-
- Fix Quke not loading .config.yml correctly [\#37](https://github.com/DEFRA/quke/pull/37) ([Cruikshanks](https://github.com/Cruikshanks))
|
108
|
-
- Update CHANGELOG.md [\#36](https://github.com/DEFRA/quke/pull/36) ([Cruikshanks](https://github.com/Cruikshanks))
|
109
|
-
|
110
|
-
## [v0.2.2](https://github.com/DEFRA/quke/tree/v0.2.2) (2016-10-05)
|
111
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.1...v0.2.2)
|
112
|
-
|
113
|
-
**Merged pull requests:**
|
114
|
-
|
115
|
-
- Fix Cucumber not loading lib/features correctly [\#35](https://github.com/DEFRA/quke/pull/35) ([Cruikshanks](https://github.com/Cruikshanks))
|
116
|
-
- Add Github\_changelog\_generator support [\#34](https://github.com/DEFRA/quke/pull/34) ([Cruikshanks](https://github.com/Cruikshanks))
|
117
|
-
- Add Rubygems version badge to README [\#33](https://github.com/DEFRA/quke/pull/33) ([Cruikshanks](https://github.com/Cruikshanks))
|
118
|
-
|
119
|
-
## [v0.2.1](https://github.com/DEFRA/quke/tree/v0.2.1) (2016-10-05)
|
120
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.2.0...v0.2.1)
|
121
|
-
|
122
|
-
**Merged pull requests:**
|
123
|
-
|
124
|
-
- Remove bundler-audit from codeclimate config [\#32](https://github.com/DEFRA/quke/pull/32) ([Cruikshanks](https://github.com/Cruikshanks))
|
125
|
-
|
126
|
-
## [v0.2.0](https://github.com/DEFRA/quke/tree/v0.2.0) (2016-10-04)
|
127
|
-
[Full Changelog](https://github.com/DEFRA/quke/compare/v0.1.0...v0.2.0)
|
128
|
-
|
129
|
-
**Merged pull requests:**
|
130
|
-
|
131
|
-
- Convert to gem [\#31](https://github.com/DEFRA/quke/pull/31) ([Cruikshanks](https://github.com/Cruikshanks))
|
132
|
-
|
133
|
-
## [v0.1.0](https://github.com/DEFRA/quke/tree/v0.1.0) (2016-08-01)
|
134
|
-
**Closed issues:**
|
135
|
-
|
136
|
-
- save\_and\_open\_page\(\) outputs to project root [\#12](https://github.com/DEFRA/quke/issues/12)
|
137
|
-
- Use Capybara's implicit wait system [\#9](https://github.com/DEFRA/quke/issues/9)
|
138
|
-
- Running tests against different environments [\#8](https://github.com/DEFRA/quke/issues/8)
|
139
|
-
|
140
|
-
**Merged pull requests:**
|
141
|
-
|
142
|
-
- Add browserstack support [\#30](https://github.com/DEFRA/quke/pull/30) ([Cruikshanks](https://github.com/Cruikshanks))
|
143
|
-
- Add dependencyci badge to README.md [\#29](https://github.com/DEFRA/quke/pull/29) ([Cruikshanks](https://github.com/Cruikshanks))
|
144
|
-
- Clear up references to poltergeist and phantomjs [\#28](https://github.com/DEFRA/quke/pull/28) ([Cruikshanks](https://github.com/Cruikshanks))
|
145
|
-
- Add support for multiple config filespty message aborts the commit [\#26](https://github.com/DEFRA/quke/pull/26) ([Cruikshanks](https://github.com/Cruikshanks))
|
146
|
-
- Move poltergeist driver options to Quke::Config [\#25](https://github.com/DEFRA/quke/pull/25) ([Cruikshanks](https://github.com/Cruikshanks))
|
147
|
-
- Add support for a yaml \(.yml\) config file [\#24](https://github.com/DEFRA/quke/pull/24) ([Cruikshanks](https://github.com/Cruikshanks))
|
148
|
-
- Add missing @quke tag to css\_selectors feature [\#23](https://github.com/DEFRA/quke/pull/23) ([Cruikshanks](https://github.com/Cruikshanks))
|
149
|
-
- Add examples of CSS selectors to project [\#22](https://github.com/DEFRA/quke/pull/22) ([Cruikshanks](https://github.com/Cruikshanks))
|
150
|
-
- Add explanation to demo pages on what tests show [\#21](https://github.com/DEFRA/quke/pull/21) ([Cruikshanks](https://github.com/Cruikshanks))
|
151
|
-
- Replace title in README with new logo image [\#20](https://github.com/DEFRA/quke/pull/20) ([Cruikshanks](https://github.com/Cruikshanks))
|
152
|
-
- Integrate quke with codeclimate [\#19](https://github.com/DEFRA/quke/pull/19) ([Cruikshanks](https://github.com/Cruikshanks))
|
153
|
-
- Integrate with Travis-CI [\#18](https://github.com/DEFRA/quke/pull/18) ([Cruikshanks](https://github.com/Cruikshanks))
|
154
|
-
- Stop saving to root when save\_and\_open\_page used [\#17](https://github.com/DEFRA/quke/pull/17) ([Cruikshanks](https://github.com/Cruikshanks))
|
155
|
-
- Tidy up of the code [\#16](https://github.com/DEFRA/quke/pull/16) ([Cruikshanks](https://github.com/Cruikshanks))
|
156
|
-
- Add example of interacting with radio-buttons [\#15](https://github.com/DEFRA/quke/pull/15) ([Cruikshanks](https://github.com/Cruikshanks))
|
157
|
-
- Add embedded test website [\#14](https://github.com/DEFRA/quke/pull/14) ([Cruikshanks](https://github.com/Cruikshanks))
|
158
|
-
- Enable Capybara implicit waits in Quke [\#13](https://github.com/DEFRA/quke/pull/13) ([Cruikshanks](https://github.com/Cruikshanks))
|
159
|
-
- Make url endpoint to be tested configurable [\#11](https://github.com/DEFRA/quke/pull/11) ([Cruikshanks](https://github.com/Cruikshanks))
|
160
|
-
- Expand readme with better documentation [\#7](https://github.com/DEFRA/quke/pull/7) ([Cruikshanks](https://github.com/Cruikshanks))
|
161
|
-
- Add function to open page on fail [\#6](https://github.com/DEFRA/quke/pull/6) ([Cruikshanks](https://github.com/Cruikshanks))
|
162
|
-
- Save custom quke args to global env vars [\#5](https://github.com/DEFRA/quke/pull/5) ([Cruikshanks](https://github.com/Cruikshanks))
|
163
|
-
- Make use of hooks clearer in project [\#4](https://github.com/DEFRA/quke/pull/4) ([Cruikshanks](https://github.com/Cruikshanks))
|
164
|
-
- Fix use of BROWSER instead of DRIVER in rake [\#3](https://github.com/DEFRA/quke/pull/3) ([Cruikshanks](https://github.com/Cruikshanks))
|
165
|
-
- Structure project 2 avoid conflicts with upstream [\#2](https://github.com/DEFRA/quke/pull/2) ([Cruikshanks](https://github.com/Cruikshanks))
|
166
|
-
- Rename env var BROWSER to DRIVER to fix Launchy [\#1](https://github.com/DEFRA/quke/pull/1) ([Cruikshanks](https://github.com/Cruikshanks))
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|