polyblock 0.9.9 → 1.0.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 +4 -4
- data/lib/polyblock/capybara_helpers.rb +11 -2
- data/lib/polyblock/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c52d6a21538f4fedba2ce5f5306faf9d04fe87a
|
4
|
+
data.tar.gz: 57a354f14abc7f4a4ffe6152f6154f853fc2d294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dcd10e0cd6f0f897efef78204af39d4ed72a9b0fc7667221739324c99ba99cf8772251054fcf4da8c628b39f9525737e1700e3ac7d33e77d07a0daf3e80452a
|
7
|
+
data.tar.gz: 27cbd5e2df0eacf940fc02044e98a0cdf6dc8144734d63aabd0b3d83a614f9744291ffaac49dc5f77b2ba20bb007b9132d3adefbeceb3b401770c4b919745b71
|
@@ -2,13 +2,22 @@ module Polyblock
|
|
2
2
|
module CapybaraHelpers
|
3
3
|
def fill_in_polyblock(locator, params={})
|
4
4
|
# Find out ckeditor id at runtime using its label
|
5
|
-
|
5
|
+
# if page.has_css? "##{locator}"
|
6
|
+
if page.evaluate_script("$('##{locator}').is('*')")
|
7
|
+
# elsif page.has_css? 'label', text: locator
|
8
|
+
elsif page.evaluate_script("$(\"label:contains('#{locator}')\").is('*')")
|
9
|
+
locator = find('label', text: locator)[:for]
|
10
|
+
else
|
11
|
+
raise "Locator #{locator} not found!!"
|
12
|
+
end
|
6
13
|
# Fill the editor content
|
7
14
|
page.execute_script <<-SCRIPT
|
8
15
|
var ckeditor = CKEDITOR.instances['#{locator}'];
|
9
16
|
ckeditor.setData('#{params[:with]}');
|
10
17
|
ckeditor.focus();
|
11
|
-
|
18
|
+
setTimeout(function(){
|
19
|
+
ckeditor.updateElement();
|
20
|
+
}, 1);
|
12
21
|
SCRIPT
|
13
22
|
end
|
14
23
|
|
data/lib/polyblock/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: polyblock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MacKinley Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-07-
|
11
|
+
date: 2015-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|