scoutui 2.0.0 → 2.0.1
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 +4 -4
- data/.gitignore +10 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +154 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/scoutui_driver.rb +22 -0
- data/bin/setup +7 -0
- data/examples/ex1/commands.holidays.yml +45 -0
- data/examples/ex1/commands.yml +25 -0
- data/examples/ex1/test-example.sh +38 -0
- data/examples/ex1/test.config.json +16 -0
- data/examples/ex2/commands.yml +35 -0
- data/examples/ex2/page_model.json +28 -0
- data/examples/ex2/test-example.sh +39 -0
- data/examples/ex2/test.config.json +25 -0
- data/lib/scoutui.rb +8 -0
- data/lib/scoutui/appmodel/q_model.rb +82 -0
- data/lib/scoutui/base/assertions.rb +62 -0
- data/lib/scoutui/base/q_accounts.rb +52 -0
- data/lib/scoutui/base/q_applitools.rb +127 -0
- data/lib/scoutui/base/q_browser.rb +185 -0
- data/lib/scoutui/base/q_form.rb +261 -0
- data/lib/scoutui/base/test_scout.rb +120 -0
- data/lib/scoutui/base/test_settings.rb +109 -0
- data/lib/scoutui/base/user_vars.rb +108 -0
- data/lib/scoutui/base/visual_test_framework.rb +574 -0
- data/lib/scoutui/commands/click_object.rb +45 -0
- data/lib/scoutui/commands/command.rb +56 -0
- data/lib/scoutui/commands/commands.rb +133 -0
- data/lib/scoutui/commands/exists_alert.rb +54 -0
- data/lib/scoutui/commands/fill_form.rb +56 -0
- data/lib/scoutui/commands/jsalert/action_jsalert.rb +58 -0
- data/lib/scoutui/commands/mouse_over.rb +31 -0
- data/lib/scoutui/commands/pause.rb +26 -0
- data/lib/scoutui/commands/select_object.rb +54 -0
- data/lib/scoutui/commands/strategy.rb +202 -0
- data/lib/scoutui/commands/submit_form.rb +44 -0
- data/lib/scoutui/commands/type.rb +44 -0
- data/lib/scoutui/commands/update_url.rb +45 -0
- data/lib/scoutui/commands/utils.rb +128 -0
- data/lib/scoutui/commands/verify_element.rb +198 -0
- data/lib/scoutui/commands/verify_form.rb +26 -0
- data/lib/scoutui/eyes/eye_factory.rb +76 -0
- data/lib/scoutui/eyes/eye_scout.rb +239 -0
- data/lib/scoutui/logger/log_mgr.rb +105 -0
- data/lib/scoutui/navigator.rb +24 -0
- data/lib/scoutui/utils/utils.rb +352 -0
- data/lib/scoutui/version.rb +3 -0
- data/scoutui.gemspec +35 -0
- metadata +54 -2
- data/pkg/scoutui-2.0.0.gem +0 -0
data/scoutui.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'scoutui/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "scoutui"
|
8
|
+
spec.version = Scoutui::VERSION
|
9
|
+
spec.authors = ["Peter Kim", 'Joshua Peeling']
|
10
|
+
spec.email = ["h20dragon@outlook.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Simple yet powerful application model based automation framework.}
|
13
|
+
spec.description = %q{Leverage a fully functional e2e framework that's integrated with Applitool's Eyes and Sauce Labs!}
|
14
|
+
spec.homepage = "https://github.com/h20dragon"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
18
|
+
# delete this section to allow pushing this gem to any host.
|
19
|
+
|
20
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler"
|
26
|
+
spec.add_development_dependency "rake"
|
27
|
+
spec.add_development_dependency "rspec"
|
28
|
+
spec.add_development_dependency "eyes_selenium"
|
29
|
+
spec.add_development_dependency "selenium-webdriver", ">= 2.47"
|
30
|
+
spec.add_development_dependency "httparty"
|
31
|
+
spec.add_development_dependency "json"
|
32
|
+
spec.add_development_dependency "faker"
|
33
|
+
spec.add_development_dependency "logging"
|
34
|
+
spec.add_development_dependency "testmgr"
|
35
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scoutui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Kim
|
@@ -159,7 +159,59 @@ executables: []
|
|
159
159
|
extensions: []
|
160
160
|
extra_rdoc_files: []
|
161
161
|
files:
|
162
|
-
-
|
162
|
+
- .gitignore
|
163
|
+
- .rspec
|
164
|
+
- .travis.yml
|
165
|
+
- CODE_OF_CONDUCT.md
|
166
|
+
- Gemfile
|
167
|
+
- LICENSE.txt
|
168
|
+
- README.md
|
169
|
+
- Rakefile
|
170
|
+
- bin/console
|
171
|
+
- bin/scoutui_driver.rb
|
172
|
+
- bin/setup
|
173
|
+
- examples/ex1/commands.holidays.yml
|
174
|
+
- examples/ex1/commands.yml
|
175
|
+
- examples/ex1/test-example.sh
|
176
|
+
- examples/ex1/test.config.json
|
177
|
+
- examples/ex2/commands.yml
|
178
|
+
- examples/ex2/page_model.json
|
179
|
+
- examples/ex2/test-example.sh
|
180
|
+
- examples/ex2/test.config.json
|
181
|
+
- lib/scoutui.rb
|
182
|
+
- lib/scoutui/appmodel/q_model.rb
|
183
|
+
- lib/scoutui/base/assertions.rb
|
184
|
+
- lib/scoutui/base/q_accounts.rb
|
185
|
+
- lib/scoutui/base/q_applitools.rb
|
186
|
+
- lib/scoutui/base/q_browser.rb
|
187
|
+
- lib/scoutui/base/q_form.rb
|
188
|
+
- lib/scoutui/base/test_scout.rb
|
189
|
+
- lib/scoutui/base/test_settings.rb
|
190
|
+
- lib/scoutui/base/user_vars.rb
|
191
|
+
- lib/scoutui/base/visual_test_framework.rb
|
192
|
+
- lib/scoutui/commands/click_object.rb
|
193
|
+
- lib/scoutui/commands/command.rb
|
194
|
+
- lib/scoutui/commands/commands.rb
|
195
|
+
- lib/scoutui/commands/exists_alert.rb
|
196
|
+
- lib/scoutui/commands/fill_form.rb
|
197
|
+
- lib/scoutui/commands/jsalert/action_jsalert.rb
|
198
|
+
- lib/scoutui/commands/mouse_over.rb
|
199
|
+
- lib/scoutui/commands/pause.rb
|
200
|
+
- lib/scoutui/commands/select_object.rb
|
201
|
+
- lib/scoutui/commands/strategy.rb
|
202
|
+
- lib/scoutui/commands/submit_form.rb
|
203
|
+
- lib/scoutui/commands/type.rb
|
204
|
+
- lib/scoutui/commands/update_url.rb
|
205
|
+
- lib/scoutui/commands/utils.rb
|
206
|
+
- lib/scoutui/commands/verify_element.rb
|
207
|
+
- lib/scoutui/commands/verify_form.rb
|
208
|
+
- lib/scoutui/eyes/eye_factory.rb
|
209
|
+
- lib/scoutui/eyes/eye_scout.rb
|
210
|
+
- lib/scoutui/logger/log_mgr.rb
|
211
|
+
- lib/scoutui/navigator.rb
|
212
|
+
- lib/scoutui/utils/utils.rb
|
213
|
+
- lib/scoutui/version.rb
|
214
|
+
- scoutui.gemspec
|
163
215
|
homepage: https://github.com/h20dragon
|
164
216
|
licenses:
|
165
217
|
- MIT
|
data/pkg/scoutui-2.0.0.gem
DELETED
Binary file
|