eyes_selenium 6.0.2 → 6.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/applitools/eyes_selenium/version.rb +1 -1
- data/lib/eyes_selenium.rb +18 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd6e17cb5ee74d73f5777c54a620f893bf25e6866bf7c07f4429df65df3e7c16
|
4
|
+
data.tar.gz: ee82efe6464b2e6f823549b66ab1a3624e6cbace99720db9db7e9170eebd9df3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8f16b4816a63e85016e6305710e6078483ddebc37bce29fc73c7aab9350f6ac44a52e7564ee6612a0504bc5aa9527a95d2af690e372b434244dd2f0b00e7d05
|
7
|
+
data.tar.gz: b8e092f92e57517874af88c6bf636000a3547be379e14ad6c6c096be334ed4f129dbb6513392ea56c1e3a7edf70d42060d3cc47ff4a8dedb3618d4f1c1695f4c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [6.0.3] (2024-02-02)
|
4
|
+
|
5
|
+
* ### Bug Fixes
|
6
|
+
* Fix Ruby 3 compatability issue with i18n integration
|
7
|
+
* Fix locate id parsing
|
8
|
+
|
9
|
+
* ### Features
|
10
|
+
* Add configure block-style of eyes_images configuration
|
11
|
+
|
12
|
+
### Dependencies
|
13
|
+
|
14
|
+
* ### Updated
|
15
|
+
* Update version of Universal SDK Core to 4.7.0
|
16
|
+
|
17
|
+
* ### Features
|
18
|
+
* added support of proxy server url env var
|
19
|
+
|
20
|
+
* ### Bug Fixes
|
21
|
+
* losing root context after layout breakpoints reload
|
22
|
+
* add environment variable for setting ufg server ufg
|
23
|
+
* remove local environment id
|
24
|
+
|
3
25
|
## [6.0.2] (2024-01-03)
|
4
26
|
|
5
27
|
### Updated
|
data/lib/eyes_selenium.rb
CHANGED
@@ -54,3 +54,21 @@ if defined? Selenium::WebDriver::Driver
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
end
|
57
|
+
|
58
|
+
# fix File.exists?
|
59
|
+
# https://github.com/pluginaweek/state_machine/blob/master/lib/state_machine/integrations/base.rb
|
60
|
+
module StateMachine
|
61
|
+
module Integrations
|
62
|
+
module Base
|
63
|
+
module ClassMethods
|
64
|
+
# The path to the locale file containing translations for this
|
65
|
+
# integration. This file will only exist for integrations that actually
|
66
|
+
# support i18n.
|
67
|
+
def locale_path
|
68
|
+
path = "#{File.dirname(__FILE__)}/#{integration_name}/locale.rb"
|
69
|
+
path if File.exist?(path)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eyes_selenium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Applitools Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: eyes_core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.0.
|
19
|
+
version: 6.0.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.0.
|
26
|
+
version: 6.0.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: selenium-webdriver
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|