testcentricity_web 4.5.1 → 4.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a944cba27f24d22629cd9dbcfe539faecd6ab8610bcc9d006baa10f44fb5fbd2
4
- data.tar.gz: 26abf0578028840bd7ce3632069bdcc65916b102a0c28f2504478ea564e22bed
3
+ metadata.gz: d8746bef064d835f617eae6f913f97ee9ea8a3b022a5f16f405b3f4e05de9e8b
4
+ data.tar.gz: ebd2ae7dac2cdffe05a2308c523fa170bcd656bf22de09ee928bc9b3bd5207c1
5
5
  SHA512:
6
- metadata.gz: 2030df69fe5f0b15ee82cf3df72d6169147d89f4bd16bb24e7f247b7d3b138b606e7d8326677d78be920df81b58a75166e28a0484cccb114bdb8ef1899a2ccac
7
- data.tar.gz: cfd3033fe084f69a02606b675221111df65c5529efc55321624821ce9d568ea75a65fa0fe8f85814c9cc6fe6a2127b482cbfb71bc4efac749acb315018196941
6
+ metadata.gz: 5d7f528dce40add6651109c39aabf7a723b5a1e7ff757551e5ddc00c5e897c896f3300364fd21bdf6192f9f6dab930bd07ebe1a0972c20bf581ef32a6b99ec28
7
+ data.tar.gz: c031b25f940a89cb17706104a5e16aab933b2ab2d65d0b01afb4e1c1238714e040adffb81c45e647797ecc9395f6f71da5ece77980c5d08b855c5ab228339cef
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
4
 
5
+ ## [4.5.2] - 26-JAN-2024
6
+
7
+ ### Changed
8
+
9
+ * Updated `appium_lib` gem to version 14.0.0.
10
+ * Updated `selenium-webdriver` gem to version 4.17.0.
11
+
12
+
5
13
  ## [4.5.1] - 18-JAN-2024
6
14
 
7
15
  ### Fixed
data/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
  The TestCentricity™ Web core framework for desktop and mobile web browser-based app testing implements a Page Object Model
11
- DSL for use with Cucumber (version 7.x or greater) or RSpec, and Selenium-Webdriver (version 4.14). It also facilitates the
11
+ DSL for use with Cucumber (version 7.x or greater) or RSpec, and Selenium-Webdriver (version 4.17). It also facilitates the
12
12
  configuration of the appropriate Selenium-Webdriver capabilities required to establish connections with one or more local
13
13
  or cloud hosted desktop or mobile web browsers.
14
14
 
@@ -1906,7 +1906,7 @@ the following **Environment Variables** must be set as described in the table be
1906
1906
  | `APP_VERSION` | Must be set to which ever iOS version you wish to run within the XCode Simulator |
1907
1907
  | `APP_DEVICE` | Set to iOS device name supported by the iOS Simulator (`iPhone 13 Pro Max`, `iPad Pro (12.9-inch) (5th generation)`, etc.) or name of physically connected iOS device |
1908
1908
  | `DEVICE_TYPE` | Must be set to `phone` or `tablet` |
1909
- | `APP_UDID` | UDID of physically connected iOS device (not used for simulators) |
1909
+ | `UDID` | UDID of physically connected iOS device (not used for simulators) |
1910
1910
  | `TEAM_ID` | unique 10-character Apple developer team identifier string (not used for simulators) |
1911
1911
  | `TEAM_NAME` | String representing a signing certificate (not used for simulators) |
1912
1912
  | `APP_ALLOW_POPUPS` | [Optional] Allow javascript to open new windows in Safari. Set to `true` or `false` |
@@ -2956,8 +2956,8 @@ with access to your version control system.
2956
2956
  # NOTE: Requires installation of XCode and Appium
2957
2957
  #==============
2958
2958
 
2959
- my_ios_15_iphone: --profile app_ios_15 DEVICE_TYPE=phone APP_DEVICE="My Test iPhoneX" APP_UDID="INSERT YOUR DEVICE UDID"
2960
- my_ios_15_ipad: --profile app_ios_15 DEVICE_TYPE=tablet APP_DEVICE="My Test iPad Pro" APP_UDID="INSERT YOUR DEVICE UDID"
2959
+ my_ios_15_iphone: --profile app_ios_15 DEVICE_TYPE=phone APP_DEVICE="My Test iPhoneX" UDID="INSERT YOUR DEVICE UDID"
2960
+ my_ios_15_ipad: --profile app_ios_15 DEVICE_TYPE=tablet APP_DEVICE="My Test iPad Pro" UDID="INSERT YOUR DEVICE UDID"
2961
2961
 
2962
2962
 
2963
2963
  #==============
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '4.5.1'
2
+ VERSION = '4.5.2'
3
3
  end
@@ -473,7 +473,7 @@ module TestCentricity
473
473
  # define mobile device options
474
474
  if ENV['BS_DEVICE']
475
475
  bs_options[:deviceName] = ENV['BS_DEVICE']
476
- bs_options[:appiumVersion] = '1.22.0'
476
+ bs_options[:appiumVersion] = '2.0.1'
477
477
  {
478
478
  browserName: browser,
479
479
  'bstack:options': bs_options
@@ -481,7 +481,7 @@ module TestCentricity
481
481
  else
482
482
  # define desktop browser options
483
483
  bs_options[:resolution] = ENV['RESOLUTION'] if ENV['RESOLUTION']
484
- bs_options[:seleniumVersion] = '4.15.0'
484
+ bs_options[:seleniumVersion] = '4.16.1'
485
485
  {
486
486
  browserName: browser,
487
487
  browserVersion: ENV['BS_VERSION'],
@@ -551,7 +551,7 @@ module TestCentricity
551
551
  else
552
552
  # define desktop browser options
553
553
  tb_options['screen-resolution'] = ENV['RESOLUTION'] if ENV['RESOLUTION']
554
- tb_options['selenium-version'] = '4.14.1'
554
+ tb_options['selenium-version'] = '4.16.1'
555
555
  end
556
556
  {
557
557
  browserName: browser,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testcentricity_web
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.1
4
+ version: 4.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - A.J. Mrozinski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-18 00:00:00.000000000 Z
11
+ date: 2024-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -156,14 +156,14 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: 13.0.1
159
+ version: 14.0.0
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: 13.0.1
166
+ version: 14.0.0
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: browserstack-local
169
169
  requirement: !ruby/object:Gem::Requirement
@@ -268,14 +268,14 @@ dependencies:
268
268
  requirements:
269
269
  - - '='
270
270
  - !ruby/object:Gem::Version
271
- version: 4.14.0
271
+ version: 4.17.0
272
272
  type: :runtime
273
273
  prerelease: false
274
274
  version_requirements: !ruby/object:Gem::Requirement
275
275
  requirements:
276
276
  - - '='
277
277
  - !ruby/object:Gem::Version
278
- version: 4.14.0
278
+ version: 4.17.0
279
279
  - !ruby/object:Gem::Dependency
280
280
  name: test-unit
281
281
  requirement: !ruby/object:Gem::Requirement
@@ -307,7 +307,7 @@ dependencies:
307
307
  description: |2-
308
308
 
309
309
  The TestCentricity™ Web core framework for desktop and mobile web browser-based app testing implements a Page Object
310
- Model DSL for use with Cucumber or RSpec, and Selenium-Webdriver v4.14. The gem also facilitates the configuration of
310
+ Model DSL for use with Cucumber or RSpec, and Selenium-Webdriver v4.17. The gem also facilitates the configuration of
311
311
  the appropriate Selenium-Webdriver capabilities required to establish connections to locally hosted desktop browsers,
312
312
  locally hosted emulated mobile browsers (iOS, Android, etc.) running within a local instance of Chrome, mobile Safari
313
313
  browsers on iOS device simulators or physical iOS devices, mobile Chrome browsers on Android Studio virtual device