sparkling_watir 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sparkling_watir/element.rb +16 -1
- data/lib/sparkling_watir/gestures.rb +49 -19
- data/lib/sparkling_watir/logger.rb +44 -0
- data/lib/sparkling_watir/screenshot.rb +50 -0
- data/lib/sparkling_watir.rb +12 -3
- data/sparkling_watir.gemspec +2 -2
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54f71df6f4b8e0ceb12704a5cf715840de8938bc6869acd23842d75af023190c
|
4
|
+
data.tar.gz: b37575d1b9aa5e422f69b7a9bd3343336d93e0696d5e977b5ee5ffb9d62f37e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23e94769776fadcb8dd912fc1b857a34690719212867446ca2d300b7dfa1a1a2260251f71d01ba9bac9701cca8b7317891e07c1b6e9157fff60c4041ca1394ee
|
7
|
+
data.tar.gz: e0e4f5d9fa929e79813a577aecaf3ccc34298bc322dba70684cb5cf511f0289a9edabd53c44032203d6ada657136f6df6324c818f4809619aa66a1f67ee34e45
|
@@ -8,7 +8,8 @@ module SparklingWatir
|
|
8
8
|
# This is a element in the native app context
|
9
9
|
#
|
10
10
|
class Element
|
11
|
-
|
11
|
+
attr_reader :driver
|
12
|
+
|
12
13
|
include Waitable
|
13
14
|
|
14
15
|
def initialize(driver, selector)
|
@@ -68,6 +69,20 @@ module SparklingWatir
|
|
68
69
|
}
|
69
70
|
end
|
70
71
|
|
72
|
+
def attribute(attribute_name)
|
73
|
+
wd.attribute(attribute_name)
|
74
|
+
end
|
75
|
+
|
76
|
+
def value
|
77
|
+
if driver.capabilities[:platform_name] == 'Android'
|
78
|
+
attribute('text')
|
79
|
+
else
|
80
|
+
attribute('value')
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
alias text value
|
85
|
+
|
71
86
|
private
|
72
87
|
|
73
88
|
def locate
|
@@ -1,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'appium_lib_core/common/touch_action/touch_actions'
|
4
3
|
require 'selenium/webdriver/common/interactions/interactions'
|
5
4
|
|
6
5
|
module SparklingWatir
|
@@ -16,57 +15,88 @@ module SparklingWatir
|
|
16
15
|
@driver.perform_actions actions
|
17
16
|
end
|
18
17
|
|
19
|
-
def tap(
|
20
|
-
|
18
|
+
def tap(opts = {})
|
19
|
+
coordinates = { x: opts[:x] || opts[:on].center[:x], y: opts[:y] || opts[:on].center[:y] }
|
21
20
|
tap = action(:touch, 'tap')
|
22
|
-
tap.create_pointer_move(duration: 0.1, x:
|
21
|
+
tap.create_pointer_move(duration: 0.1, x: coordinates[:x], y: coordinates[:y], origin: VIEWPORT)
|
23
22
|
tap.create_pointer_down(:left)
|
23
|
+
tap.create_pause(opts[:duration] || 0)
|
24
24
|
tap.create_pointer_up(:left)
|
25
25
|
perform tap
|
26
26
|
end
|
27
27
|
|
28
28
|
alias press tap
|
29
29
|
|
30
|
-
def double_tap
|
31
|
-
wait_until(&:present?)
|
30
|
+
def double_tap(opts = {})
|
32
31
|
double_tap = action(:touch, 'double_tap')
|
33
|
-
|
32
|
+
coordinates = { x: opts[:x] || opts[:on].center[:x], y: opts[:y] || opts[:on].center[:y] }
|
33
|
+
double_tap.create_pointer_move(duration: 0, x: coordinates[:x], y: coordinates[:y], origin: VIEWPORT)
|
34
34
|
double_tap.create_pointer_down(:left)
|
35
|
+
double_tap.create_pause(0.1)
|
35
36
|
double_tap.create_pointer_up(:left)
|
37
|
+
double_tap.create_pause(0.1)
|
36
38
|
double_tap.create_pointer_down(:left)
|
39
|
+
double_tap.create_pause(0.1)
|
37
40
|
double_tap.create_pointer_up(:left)
|
38
41
|
|
39
42
|
perform double_tap
|
40
43
|
end
|
41
44
|
|
45
|
+
def long_press(opts = {})
|
46
|
+
tap(duration: opts[:duration] || 0.5, on: opts[:on])
|
47
|
+
end
|
48
|
+
|
42
49
|
def swipe(opts = {})
|
43
|
-
|
44
|
-
|
45
|
-
end_coordinates = select_direction(opts[:to].wait_until(&:exists?).center[:x], opts[:to].wait_until(&:exists?).center[:y], opts[:direction])
|
46
|
-
duration = opts[:duration] || 1
|
47
|
-
execute_swipe(duration, start_coordinates, end_coordinates)
|
50
|
+
coordinates = select_direction(opts[:to], opts[:direction])
|
51
|
+
execute_swipe(coordinates)
|
48
52
|
end
|
49
53
|
|
50
54
|
private
|
51
55
|
|
52
|
-
def execute_swipe(
|
56
|
+
def execute_swipe(coordinates)
|
53
57
|
finger = action(:touch, 'swipe')
|
54
|
-
finger.create_pointer_move(duration:
|
58
|
+
finger.create_pointer_move(duration: 0, x: coordinates[:start_coordinates][:x],
|
59
|
+
y: coordinates[:start_coordinates][:y],
|
55
60
|
origin: VIEWPORT)
|
56
61
|
finger.create_pointer_down(:left)
|
57
|
-
finger.
|
62
|
+
finger.create_pause(0.6)
|
63
|
+
finger.create_pointer_move(duration: 0.6, x: coordinates[:end_coordinates][:x],
|
64
|
+
y: coordinates[:end_coordinates][:y],
|
58
65
|
origin: VIEWPORT)
|
59
66
|
finger.create_pointer_up(:left)
|
67
|
+
finger.create_pointer_down(:left)
|
68
|
+
|
60
69
|
perform finger
|
61
70
|
end
|
62
71
|
|
63
|
-
def select_direction(
|
72
|
+
def select_direction(element, direction)
|
64
73
|
case direction
|
65
|
-
when :down
|
66
|
-
|
67
|
-
|
74
|
+
when :down
|
75
|
+
start_x = element.center[:x]
|
76
|
+
start_y = @driver.window_size.height * 0.8
|
77
|
+
end_x = element.center[:x]
|
78
|
+
end_y = element.center[:y]
|
79
|
+
when :up
|
80
|
+
start_x = @driver.window_size.width / 2
|
81
|
+
start_y = @driver.window_size.height * 0.2
|
82
|
+
end_x = element.center[:x]
|
83
|
+
end_y = element.center[:y] / 0.5
|
84
|
+
when :left
|
85
|
+
start_x = @driver.window_size.width
|
86
|
+
start_y = element.center[:y]
|
87
|
+
end_x = element.center[:x]
|
88
|
+
end_y = element.center[:y]
|
89
|
+
when :right
|
90
|
+
start_x = @driver.window_size.width
|
91
|
+
start_y = element.center[:y]
|
92
|
+
end_x = element.center[:x]
|
93
|
+
end_y = element.center[:y]
|
68
94
|
else raise "You selected an invalid direction. The valid directions are: :down, :up, :left, :right"
|
69
95
|
end
|
96
|
+
{
|
97
|
+
start_coordinates: { x: start_x, y: start_y },
|
98
|
+
end_coordinates: { x: end_x, y: end_y }
|
99
|
+
}
|
70
100
|
end
|
71
101
|
end
|
72
102
|
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'forwardable'
|
16
|
+
require 'logger'
|
17
|
+
|
18
|
+
module SparklingWatir
|
19
|
+
module Logger
|
20
|
+
#
|
21
|
+
# @example Use logger manually
|
22
|
+
# SparklingWatir::Logger.debug('This is info message')
|
23
|
+
# SparklingWatir::Logger.warn('This is warning message')
|
24
|
+
#
|
25
|
+
class << self
|
26
|
+
extend Forwardable
|
27
|
+
def_delegators :logger, :fatal, :error, :warn, :info, :debug, :level, :level=, :formatter, :formatter=
|
28
|
+
|
29
|
+
attr_writer :logger
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def logger
|
34
|
+
@logger ||= begin
|
35
|
+
logger = ::Logger.new($stdout)
|
36
|
+
logger.progname = 'sparkling_watir'
|
37
|
+
logger.level = ::Logger::WARN
|
38
|
+
logger.formatter = proc { |_severity, _datetime, _progname, msg| "#{msg}\n" }
|
39
|
+
logger
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end # class << self
|
43
|
+
end # module Logger
|
44
|
+
end # module SparklingWatir
|
@@ -0,0 +1,50 @@
|
|
1
|
+
module SparklingWatir
|
2
|
+
class Screenshot
|
3
|
+
attr_reader :driver
|
4
|
+
|
5
|
+
def initialize(driver)
|
6
|
+
@driver = driver
|
7
|
+
end
|
8
|
+
|
9
|
+
#
|
10
|
+
# Saves screenshot to given path.
|
11
|
+
#
|
12
|
+
# @example
|
13
|
+
# driver.screenshot.save "screenshot.png"
|
14
|
+
#
|
15
|
+
# @param [String] path
|
16
|
+
#
|
17
|
+
|
18
|
+
def save(path)
|
19
|
+
driver.save_screenshot(path)
|
20
|
+
end
|
21
|
+
|
22
|
+
#
|
23
|
+
# Represents screenshot as PNG image string.
|
24
|
+
#
|
25
|
+
# @example
|
26
|
+
# driver.screenshot.png
|
27
|
+
# #=> '\x95\xC7\x8C@1\xC07\x1C(Edb\x15\xB2\vL'
|
28
|
+
#
|
29
|
+
# @return [String]
|
30
|
+
#
|
31
|
+
|
32
|
+
def png
|
33
|
+
driver.screenshot_as(:png)
|
34
|
+
end
|
35
|
+
|
36
|
+
#
|
37
|
+
# Represents screenshot as Base64 encoded string.
|
38
|
+
#
|
39
|
+
# @example
|
40
|
+
# driver.screenshot.base64
|
41
|
+
# #=> '7HWJ43tZDscPleeUuPW6HhN3x+z7vU/lufmH0qNTtTum94IBWMT46evImci1vnFGT'
|
42
|
+
#
|
43
|
+
# @return [String]
|
44
|
+
#
|
45
|
+
|
46
|
+
def base64
|
47
|
+
driver.screenshot_as(:base64)
|
48
|
+
end
|
49
|
+
end # Screenshot
|
50
|
+
end # SparklingWatir
|
data/lib/sparkling_watir.rb
CHANGED
@@ -2,17 +2,22 @@
|
|
2
2
|
|
3
3
|
require 'appium_lib_core'
|
4
4
|
require 'watir'
|
5
|
+
require_relative './sparkling_watir/gestures'
|
6
|
+
require_relative './sparkling_watir/logger'
|
7
|
+
require_relative './sparkling_watir/screenshot'
|
5
8
|
|
6
9
|
module SparklingWatir
|
7
10
|
#
|
8
|
-
# For driving a native application
|
11
|
+
# For driving a native application
|
9
12
|
#
|
10
13
|
class App
|
11
14
|
attr_accessor :driver
|
12
15
|
|
16
|
+
include Gestures
|
17
|
+
|
13
18
|
def initialize(opts)
|
14
|
-
url = opts[:caps]
|
15
|
-
@driver = Appium::Core::Driver.for(opts).start_driver(server_url:
|
19
|
+
url = opts[:caps]['url']
|
20
|
+
@driver = Appium::Core::Driver.for(opts).start_driver(server_url: url)
|
16
21
|
end
|
17
22
|
|
18
23
|
def quit
|
@@ -25,6 +30,10 @@ module SparklingWatir
|
|
25
30
|
Element.new(driver, selector)
|
26
31
|
end
|
27
32
|
|
33
|
+
def screenshot
|
34
|
+
Screenshot.new self
|
35
|
+
end
|
36
|
+
|
28
37
|
def method_missing(method_name, *arguments, &block)
|
29
38
|
if driver.respond_to? method_name
|
30
39
|
driver.send method_name, *arguments, &block
|
data/sparkling_watir.gemspec
CHANGED
@@ -5,10 +5,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'sparkling_watir'
|
8
|
-
spec.version = '0.0.
|
8
|
+
spec.version = '0.0.5'
|
9
9
|
spec.authors = ['Agustin Pequeno']
|
10
10
|
spec.email = ['agustin.pe94@gmail.com']
|
11
|
-
|
11
|
+
spec.homepage = 'https://github.com/aguspe/sparkling_watir'
|
12
12
|
spec.summary = 'A watir adaptation for testing your native mobile apps'
|
13
13
|
spec.description = 'Sparkling watir takes heavy inspiration from tap watir and is a mobile adaptation of watir'
|
14
14
|
spec.license = 'MIT'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sparkling_watir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Agustin Pequeno
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -138,10 +138,12 @@ files:
|
|
138
138
|
- lib/sparkling_watir.rb
|
139
139
|
- lib/sparkling_watir/element.rb
|
140
140
|
- lib/sparkling_watir/gestures.rb
|
141
|
+
- lib/sparkling_watir/logger.rb
|
142
|
+
- lib/sparkling_watir/screenshot.rb
|
141
143
|
- lib/sparkling_watir/wait.rb
|
142
144
|
- lib/sparkling_watir/wait/timer.rb
|
143
145
|
- sparkling_watir.gemspec
|
144
|
-
homepage:
|
146
|
+
homepage: https://github.com/aguspe/sparkling_watir
|
145
147
|
licenses:
|
146
148
|
- MIT
|
147
149
|
metadata: {}
|