edsl 0.1.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 +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.rubocop.yml +27 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/Rakefile +6 -0
- data/bin/console +13 -0
- data/bin/setup +8 -0
- data/edsl.gemspec +38 -0
- data/lib/edsl/dsl.rb +111 -0
- data/lib/edsl/element_container.rb +24 -0
- data/lib/edsl/version.rb +3 -0
- data/lib/edsl/watir_elements.rb +19 -0
- data/lib/edsl.rb +5 -0
- metadata +189 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c9f097097fb3758a17ebdf2773fad9a81db56ae733288676e8e8ed04ea53cdd9
|
4
|
+
data.tar.gz: e385e0e3eb350e6bc4e5f61f8492408b92fdfd071196be2c667d2393e41a8f12
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 326e347590d35861c9a2470a774bb0e24287578990907a9770d34c0e993f38461cfeee07249303e67a6894eb76a02a04e7af06249433eb6cb176c645e7f68d4e
|
7
|
+
data.tar.gz: a5ce2cc40b44e3d2a3fff8dcdff72b3737f41087056cf7d79b4ed484e07c69650f5a4c1959f82710e81cf0a39ff7e2b5fac2459583b60a14765237057efd768e
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# Offense count: 1
|
2
|
+
Lint/Debugger:
|
3
|
+
Exclude:
|
4
|
+
- 'bin/console'
|
5
|
+
|
6
|
+
|
7
|
+
Style/FrozenStringLiteralComment:
|
8
|
+
Exclude:
|
9
|
+
- 'Gemfile'
|
10
|
+
- 'Rakefile'
|
11
|
+
|
12
|
+
Metrics/LineLength:
|
13
|
+
Max: 140
|
14
|
+
IgnoredPatterns: ['(\A|\s)#','Nenv\.']
|
15
|
+
|
16
|
+
Metrics/PerceivedComplexity:
|
17
|
+
Max: 8
|
18
|
+
|
19
|
+
Layout/FirstParameterIndentation:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
# Robocop misses when we have an out variable so don't let it 'fix' things.
|
23
|
+
Lint/UnusedMethodArgument:
|
24
|
+
AutoCorrect: false
|
25
|
+
|
26
|
+
Metrics/MethodLength:
|
27
|
+
Max: 25
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at donavan.stanley@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Donavan Stanley
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# EDSL
|
2
|
+
|
3
|
+
This gem implements an extensible DSL for implementing the page object, pattern.
|
4
|
+
It is very similar to PageObject and can almost be used as a drop-in replacement for it.
|
5
|
+
However, this gem focuses the element DSL portion only.
|
6
|
+
|
7
|
+
This gem was created to simplify the process of creating abstractions for web automation.
|
8
|
+
Because EDSL is easy to extend, you can create custom DSL methods that are first class citizens
|
9
|
+
|
10
|
+
This is still very much a work in progress. Primary documentation can be found in code comments for now.
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
Add this line to your application's Gemfile:
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
gem 'edsl'
|
18
|
+
```
|
19
|
+
|
20
|
+
And then execute:
|
21
|
+
|
22
|
+
$ bundle
|
23
|
+
|
24
|
+
Or install it yourself as:
|
25
|
+
|
26
|
+
$ gem install edsl
|
27
|
+
|
28
|
+
## Usage
|
29
|
+
|
30
|
+
TODO: Write usage instructions here
|
31
|
+
|
32
|
+
## Development
|
33
|
+
|
34
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
35
|
+
|
36
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
|
40
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/edsl. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
41
|
+
|
42
|
+
## License
|
43
|
+
|
44
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
45
|
+
|
46
|
+
## Code of Conduct
|
47
|
+
|
48
|
+
Everyone interacting in the Edsl project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/edsl/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'edsl'
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
browser = Watir::Browser.new :chrome
|
9
|
+
browser.goto 'https://www.google.com'
|
10
|
+
|
11
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
12
|
+
require 'pry'
|
13
|
+
Pry.start
|
data/bin/setup
ADDED
data/edsl.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'edsl/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'edsl'
|
7
|
+
spec.version = EDSL::VERSION
|
8
|
+
spec.authors = ['Donavan Stanley']
|
9
|
+
spec.email = ['donavan.stanley@gmail.com']
|
10
|
+
|
11
|
+
spec.summary = 'An easy to extend DSL for web elements'
|
12
|
+
spec.description = 'Page object pattern without PageObject'
|
13
|
+
spec.homepage = 'https://github.com/jdonavan'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
17
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = 'exe'
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ['lib']
|
27
|
+
|
28
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
29
|
+
spec.add_development_dependency 'pry'
|
30
|
+
spec.add_development_dependency 'pry-byebug'
|
31
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
32
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
33
|
+
spec.add_development_dependency 'rubocop'
|
34
|
+
|
35
|
+
spec.add_runtime_dependency 'watir'
|
36
|
+
spec.add_runtime_dependency 'cpt_hook'
|
37
|
+
spec.add_runtime_dependency 'facets'
|
38
|
+
end
|
data/lib/edsl/dsl.rb
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
# Root module for the gem
|
2
|
+
require 'cpt_hook'
|
3
|
+
|
4
|
+
module EDSL
|
5
|
+
# Ensure the DSL methods are applied when we're included
|
6
|
+
def self.included(cls)
|
7
|
+
cls.extend EDSL::DSL
|
8
|
+
|
9
|
+
cls.send(:define_method, :resolve_with) do |with_var|
|
10
|
+
return self if with_var == :page
|
11
|
+
return :self if with_var == :element
|
12
|
+
with_var
|
13
|
+
end
|
14
|
+
|
15
|
+
cls.send(:define_method, :apply_hooks) do |hook_defs, element|
|
16
|
+
return nil if element.nil?
|
17
|
+
return element if hook_defs.nil?
|
18
|
+
hd = hook_defs.dup
|
19
|
+
hd.hooks.each { |hook| hook.call_chain.each { |cc| cc.resolve_with { |c| resolve_with(c) } } }
|
20
|
+
hd.hooks.each { |hook| hook.call_chain.each { |cc| cc.resolve_contexts { |c| resolve_with(c) } } }
|
21
|
+
CptHook::Hookable.new(element, hd, self)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
# Use a block to add new methods to the DSL.
|
26
|
+
def self.extend_dsl(&block)
|
27
|
+
EDSL::DSL.class_eval(&block)
|
28
|
+
end
|
29
|
+
|
30
|
+
# Define a new accessor using a name and options.
|
31
|
+
# See the DSL module for more info
|
32
|
+
def self.define_accessor(acc_name, default_opts)
|
33
|
+
DSL.define_accessor(acc_name, default_opts)
|
34
|
+
end
|
35
|
+
|
36
|
+
# These methods will be extended into any class which includes EDSL.
|
37
|
+
# They provide a mechanism for declaring HTML elements as properties of another object
|
38
|
+
module DSL
|
39
|
+
# This is the core accessor on which everything else is based.
|
40
|
+
# Given a name and some options this will generate the following methods:
|
41
|
+
# name - Executes the method found in the :default_method option, or the element itself if none provided.
|
42
|
+
# name= - Executes the method found in the :assign_method option, passing it the value. (optional).
|
43
|
+
# name? - Executes the method found in the :presence_method option, or present?
|
44
|
+
#
|
45
|
+
# For example a text field would look like this:
|
46
|
+
# element(:username, id: 'some_id', how: :text_field, default_method: :value, assign_method: :set)
|
47
|
+
#
|
48
|
+
# The :how option can either be something that is sendable. or a proc
|
49
|
+
# If send is used, the options will be passed on to the method.
|
50
|
+
# If a proc is used it will be called with the name and opts param as well as the container
|
51
|
+
#
|
52
|
+
# A text field could be declared like this:
|
53
|
+
# element(:username, id: 'some_id', how: Proc.new { |name, container, opts| container.text_field(opts) }, default_method: :value, assign_method: :set)
|
54
|
+
#
|
55
|
+
def element(name, opts)
|
56
|
+
how = opts.delete(:how)
|
57
|
+
default_method = opts.delete(:default_method)
|
58
|
+
assign_method = opts.delete(:assign_method)
|
59
|
+
presence_method = opts.delete(:presence_method) || :present?
|
60
|
+
hooks = opts.delete(:hooks)
|
61
|
+
wrapper_fn = opts.delete(:wrapper_fn) || lambda { |_e, _p| return _e }
|
62
|
+
|
63
|
+
ele_meth = "#{name}_element"
|
64
|
+
define_method(ele_meth) do
|
65
|
+
ele = yield name, self, opts if block_given?
|
66
|
+
ele ||= how.call(name, self, opts) if how.is_a?(Proc)
|
67
|
+
ele ||= send(how, opts)
|
68
|
+
ele = wrapper_fn.call(ele, self)
|
69
|
+
hooks.nil? ? ele : send(:apply_hooks, hooks, ele)
|
70
|
+
end
|
71
|
+
|
72
|
+
define_method(name) do
|
73
|
+
return default_method.call(name, self) if default_method.is_a?(Proc)
|
74
|
+
default_method.nil? ? send(ele_meth) : send(ele_meth).send(default_method)
|
75
|
+
end
|
76
|
+
|
77
|
+
define_method("#{name}?") do
|
78
|
+
send(ele_meth).send(presence_method)
|
79
|
+
end
|
80
|
+
|
81
|
+
return unless assign_method
|
82
|
+
|
83
|
+
define_method("#{name}=") do |value|
|
84
|
+
send(ele_meth).send(assign_method, value)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# This vastly simplifies defining custom accessors.
|
89
|
+
# If we had to use the base element method for every field that would be tedious.
|
90
|
+
# This method allows us to extend the DSL to add a shorthand method for elements.
|
91
|
+
#
|
92
|
+
# If we extend the DSL like this:
|
93
|
+
# EDSL.define_accessor(:text_field, how: :text_field, default_method: :value, assign_method: :set)
|
94
|
+
# Then we can use an easier syntax to declare a text field
|
95
|
+
# text_field(:username, id: 'some_id')
|
96
|
+
#
|
97
|
+
def self.define_accessor(acc_name, default_opts)
|
98
|
+
self.class.send(:define_method, acc_name) do |name, opts = {}, &block|
|
99
|
+
element(name, default_opts.merge(opts), &block)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def self.alias_accessor(new_name, acc_name)
|
104
|
+
self.class.send(:alias_method, new_name, acc_name)
|
105
|
+
end
|
106
|
+
|
107
|
+
def self.define_accessors(accessor_array)
|
108
|
+
accessor_array.each { |acc| define_accessor(*acc) }
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'delegate'
|
2
|
+
module EDSL
|
3
|
+
# This serves as a handy base class for custom elements, page objects and page sections
|
4
|
+
# as this inherits from SimpleDelegator any call that would be valid on the root element
|
5
|
+
# or browser is valid on the container object.
|
6
|
+
#
|
7
|
+
# Using this base class is not a requirement, however code in some modules may assume that
|
8
|
+
# methods in this class are available.
|
9
|
+
#
|
10
|
+
# This allows your object to serve as a proxy for the Watir::Container and be have an API
|
11
|
+
# consistent with other elements
|
12
|
+
#
|
13
|
+
class ElementContainer < ::SimpleDelegator
|
14
|
+
include EDSL
|
15
|
+
|
16
|
+
attr_reader :parent_container
|
17
|
+
alias_method :root_element, :__getobj__
|
18
|
+
|
19
|
+
def initialize(element, parent = nil)
|
20
|
+
super(element)
|
21
|
+
@parent_container = parent
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/edsl/version.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
module EDSL
|
2
|
+
# This module extends the DSL to include the various Watir elements
|
3
|
+
module WatirElements
|
4
|
+
SPECIAL_ELEMENTS = %i[button a radio_set input select textarea].freeze
|
5
|
+
|
6
|
+
Watir.tag_to_class.keys.reject { |k| SPECIAL_ELEMENTS.include?(k) }.each do |tag|
|
7
|
+
EDSL.define_accessor(tag, how: tag, default_method: :text)
|
8
|
+
end
|
9
|
+
|
10
|
+
CLICKABLE_ELEMENTS = %i[button a link].freeze
|
11
|
+
CLICKABLE_ELEMENTS.each { |tag| EDSL.define_accessor(tag, how: tag, default_method: :click) }
|
12
|
+
|
13
|
+
CONTENT_EDITABLE_ELEMENTS = %i[text_field textarea text_area].freeze
|
14
|
+
CONTENT_EDITABLE_ELEMENTS.each { |tag| EDSL.define_accessor(tag, how: tag, default_method: :value, assign_method: :set) }
|
15
|
+
|
16
|
+
SETABLE_ELEMENTS = %i[radio checkbox].freeze
|
17
|
+
SETABLE_ELEMENTS.each { |tag| EDSL.define_accessor(tag, how: tag, default_method: :set?, assign_method: :set) }
|
18
|
+
end
|
19
|
+
end
|
data/lib/edsl.rb
ADDED
metadata
ADDED
@@ -0,0 +1,189 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: edsl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Donavan Stanley
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-10-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: pry
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry-byebug
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: watir
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: cpt_hook
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: facets
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
description: Page object pattern without PageObject
|
140
|
+
email:
|
141
|
+
- donavan.stanley@gmail.com
|
142
|
+
executables: []
|
143
|
+
extensions: []
|
144
|
+
extra_rdoc_files: []
|
145
|
+
files:
|
146
|
+
- ".gitignore"
|
147
|
+
- ".rspec"
|
148
|
+
- ".rubocop.yml"
|
149
|
+
- ".travis.yml"
|
150
|
+
- CODE_OF_CONDUCT.md
|
151
|
+
- Gemfile
|
152
|
+
- LICENSE.txt
|
153
|
+
- README.md
|
154
|
+
- Rakefile
|
155
|
+
- bin/console
|
156
|
+
- bin/setup
|
157
|
+
- edsl.gemspec
|
158
|
+
- lib/edsl.rb
|
159
|
+
- lib/edsl/dsl.rb
|
160
|
+
- lib/edsl/element_container.rb
|
161
|
+
- lib/edsl/version.rb
|
162
|
+
- lib/edsl/watir_elements.rb
|
163
|
+
homepage: https://github.com/jdonavan
|
164
|
+
licenses:
|
165
|
+
- MIT
|
166
|
+
metadata:
|
167
|
+
homepage_uri: https://github.com/jdonavan
|
168
|
+
source_code_uri: https://github.com/jdonavan
|
169
|
+
post_install_message:
|
170
|
+
rdoc_options: []
|
171
|
+
require_paths:
|
172
|
+
- lib
|
173
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
174
|
+
requirements:
|
175
|
+
- - ">="
|
176
|
+
- !ruby/object:Gem::Version
|
177
|
+
version: '0'
|
178
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
requirements: []
|
184
|
+
rubyforge_project:
|
185
|
+
rubygems_version: 2.7.7
|
186
|
+
signing_key:
|
187
|
+
specification_version: 4
|
188
|
+
summary: An easy to extend DSL for web elements
|
189
|
+
test_files: []
|