testcentricity_web 4.5.1 → 4.5.3

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: 5a7f88315459e0596d463404a3a64a416d17504a12416b68df3f3849454ecbae
4
+ data.tar.gz: 965a0a13ce26bd261a9ea7dcab6151e9e227e932dbe196a38210d03227585858
5
5
  SHA512:
6
- metadata.gz: 2030df69fe5f0b15ee82cf3df72d6169147d89f4bd16bb24e7f247b7d3b138b606e7d8326677d78be920df81b58a75166e28a0484cccb114bdb8ef1899a2ccac
7
- data.tar.gz: cfd3033fe084f69a02606b675221111df65c5529efc55321624821ce9d568ea75a65fa0fe8f85814c9cc6fe6a2127b482cbfb71bc4efac749acb315018196941
6
+ metadata.gz: a87f1183da9c7dec90b9187d1c15e6cd779f857611ac1c8299d25dea5b211b2462ee6df8872cddd37d14fc8093d15ded7b501013e053468b384b012a859a402f
7
+ data.tar.gz: 6a0ad4f9193f41b07f3e15fe48e1d0c7010ad9bedb568f24be8bc30b3df01bb2a9d95821d1670e1e4336a01b237cfb1a2022ceaa8266baf3c8e141118f88d16a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
4
 
5
+ ## [4.5.3] - 27-JAN-2024
6
+
7
+ ### Changed
8
+
9
+ * Updated `capybara` gem to version 3.40.0.
10
+
11
+
12
+ ## [4.5.2] - 26-JAN-2024
13
+
14
+ ### Changed
15
+
16
+ * Updated `appium_lib` gem to version 14.0.0.
17
+ * Updated `selenium-webdriver` gem to version 4.17.0.
18
+
19
+
5
20
  ## [4.5.1] - 18-JAN-2024
6
21
 
7
22
  ### 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
 
@@ -35,7 +35,7 @@ A complete history of bug fixes and new features can be found in the {file:CHANG
35
35
  The RubyDocs for this gem can be found [here](https://www.rubydoc.info/gems/testcentricity_web).
36
36
 
37
37
  An example project that demonstrates the implementation of a page object model framework using Cucumber and TestCentricity™ Web
38
- can be found [here](https://github.com/TestCentricity/tc_web_sample).
38
+ can be found [here](https://github.com/TestCentricity/tc_multi_webdriver_sample).
39
39
 
40
40
 
41
41
  ### Which gem should I use?
@@ -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.3'
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.3
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-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 9.1.0
33
+ version: 9.1.2
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 9.1.0
40
+ version: 9.1.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: docker-compose
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -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
@@ -184,14 +184,14 @@ dependencies:
184
184
  requirements:
185
185
  - - '='
186
186
  - !ruby/object:Gem::Version
187
- version: 3.39.2
187
+ version: 3.40.0
188
188
  type: :runtime
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - '='
193
193
  - !ruby/object:Gem::Version
194
- version: 3.39.2
194
+ version: 3.40.0
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: childprocess
197
197
  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