marta 0.37396 → 0.41245
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/README.md +42 -19
- data/example_project/p_object/test_page.rb +2 -1
- data/example_project/project_itself/iframe.html +5 -0
- data/{lib/marta/data/test.html → example_project/project_itself/index.html} +1 -1
- data/example_project/spec/p_object/pageobjects/MartaTestPage.json +707 -124
- data/example_project/spec/p_object/pageobjects/TheIframe.json +70 -14
- data/example_project/spec/spec_helper.rb +3 -1
- data/lib/marta/black_magic.rb +59 -13
- data/lib/marta/data/element.html +4 -15
- data/lib/marta/data/element.js +25 -226
- data/lib/marta/data/style.css +2 -2
- data/lib/marta/dialogs.rb +52 -4
- data/lib/marta/element_information.rb +86 -0
- data/lib/marta/injector.rb +2 -2
- data/lib/marta/json_2_class.rb +1 -1
- data/lib/marta/lightning.rb +1 -0
- data/lib/marta/marta_app/content.js +8 -0
- data/lib/marta/marta_app/devtools.html +1 -0
- data/lib/marta/marta_app/devtools.js +5 -0
- data/lib/marta/marta_app/manifest.json +3 -2
- data/lib/marta/options_and_paths.rb +1 -10
- data/lib/marta/page_arithmetic.rb +85 -97
- data/lib/marta/public_methods.rb +5 -4
- data/lib/marta/read_write.rb +50 -1
- data/lib/marta/server.rb +0 -18
- data/lib/marta/simple_element_finder.rb +0 -19
- data/lib/marta/version.rb +1 -1
- data/lib/marta/x_path.rb +154 -139
- metadata +7 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: marta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.41245'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergei Seleznev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -140,6 +140,8 @@ files:
|
|
140
140
|
- bin/console
|
141
141
|
- bin/setup
|
142
142
|
- example_project/p_object/test_page.rb
|
143
|
+
- example_project/project_itself/iframe.html
|
144
|
+
- example_project/project_itself/index.html
|
143
145
|
- example_project/spec/p_object/pageobjects/MartaTestPage.json
|
144
146
|
- example_project/spec/p_object/pageobjects/TheIframe.json
|
145
147
|
- example_project/spec/spec_helper.rb
|
@@ -160,13 +162,15 @@ files:
|
|
160
162
|
- lib/marta/data/page.html
|
161
163
|
- lib/marta/data/page.js
|
162
164
|
- lib/marta/data/style.css
|
163
|
-
- lib/marta/data/test.html
|
164
165
|
- lib/marta/dialogs.rb
|
166
|
+
- lib/marta/element_information.rb
|
165
167
|
- lib/marta/injector.rb
|
166
168
|
- lib/marta/json_2_class.rb
|
167
169
|
- lib/marta/lightning.rb
|
168
170
|
- lib/marta/marta_app/background.js
|
169
171
|
- lib/marta/marta_app/content.js
|
172
|
+
- lib/marta/marta_app/devtools.html
|
173
|
+
- lib/marta/marta_app/devtools.js
|
170
174
|
- lib/marta/marta_app/manifest.json
|
171
175
|
- lib/marta/object.rb
|
172
176
|
- lib/marta/options_and_paths.rb
|