testcentricity_web 4.6.10 → 4.6.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de6418809f79980fa606328879c38f0307e96d03d62abe5d1e1d2e7054a9a9fb
4
- data.tar.gz: cb56e40775606d4d00557402656d98ff9e0b214d5bc58dad599bda6ed09c368a
3
+ metadata.gz: 2185f428931eb2ff4cf1c50195cba1c7c504497b928e040ab310783eca6c3dc5
4
+ data.tar.gz: e26b18cf4ab4472479ee832643e07ce2ecf38daaa49646ae3cbac1a582c3819d
5
5
  SHA512:
6
- metadata.gz: c0c860cb2b14e91a790c9fedbaceeb722cc480b3379abf8a30a691c8d57b3e1e900ce410c7eea2b5e8202f1bdfb2f405a7f78e06a9747cb36632f722f0ba8775
7
- data.tar.gz: 4ad95f8ceedaa1acbebb5eb1869067b25a7eca38a6cc9daae6a68733d98913a21d0dc2db76e6cf9077df596db53ee060d5808c374b4dc1ec8bb64d3aca65fa7a
6
+ metadata.gz: 51888898939d4dad21cffdaec1ffca20b563bea45281d7d133dfd81266eb198d0b33e8fe7a4dc54b7b0d02c73d4958fa88e4f5ed57cdec73fa0723574db5dc28
7
+ data.tar.gz: a8671251ac33cf625e0cf997af13b8a8ee92989604321812943dfe9ce676ee32765cd49c675477e66ab8b7b2dbe6db39a66cb44914ab93dc14fa2aca83f234eb
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
4
 
5
+ ## [4.6.11] - 24-NOV-2025
6
+
7
+ ### Removed
8
+
9
+ * Appium version 1.x is no longer supported.
10
+
11
+
5
12
  ## [4.6.10] - 07-NOV-2025
6
13
 
7
14
  ### Added
data/README.md CHANGED
@@ -1895,10 +1895,6 @@ Below is an example of an `options` hash for specifying a connection to a grid h
1895
1895
 
1896
1896
  Refer to [this page](https://appium.io/docs/en/2.2/guides/caps/) for information regarding specifying Appium capabilities.
1897
1897
 
1898
- ⚠️ If you are running locally hosted mobile web tests on iOS or Android simulators or devices using version 1.x of the Appium
1899
- server, the `APPIUM_SERVER_VERSION` environment variable must be set to `1` in order to ensure that the correct Appium server
1900
- endpoint is used.
1901
-
1902
1898
  #### Mobile Safari Browser on iOS Simulators or iOS Physical Devices
1903
1899
 
1904
1900
  You can run your mobile web tests against the mobile Safari browser on iOS device simulators or physically connected iOS
@@ -2115,15 +2111,6 @@ starting your Cucumber test suite(s):
2115
2111
 
2116
2112
  run_appium: APPIUM_SERVER=run
2117
2113
 
2118
- If you are running locally hosted mobile web tests on iOS or Android simulators or devices using version 1.x of the Appium
2119
- server, the `APPIUM_SERVER_VERSION` environment variable must be set to `1` in order to ensure that the correct Appium server
2120
- endpoint is used. This can be set by adding the following to your `cucumber.yml` file and including `-p appium_1x` in your
2121
- command line when starting your Cucumber test suite(s):
2122
-
2123
- appium_1x: APPIUM_SERVER_VERSION=1
2124
-
2125
- Refer to [**section 8.9 (Using Browser Specific Profiles in `cucumber.yml`)**](#using-browser-specific-profiles-in-cucumber-yml) below.
2126
-
2127
2114
 
2128
2115
  ##### Using Appium Server with RSpec
2129
2116
 
@@ -2142,9 +2129,6 @@ body of an example group:
2142
2129
  $server.stop if Environ.driver == :appium && $server.running?
2143
2130
  end
2144
2131
  ```
2145
- If you are running locally hosted mobile web tests on iOS or Android simulators or devices using version 1.x of the Appium
2146
- server, the `APPIUM_SERVER_VERSION` environment variable must be set to `1` in order to ensure that the correct Appium server
2147
- endpoint is used.
2148
2132
 
2149
2133
 
2150
2134
  ### Remote Cloud Hosted Desktop and Mobile Web Browsers
@@ -2966,7 +2950,6 @@ with access to your version control system.
2966
2950
  #==============
2967
2951
 
2968
2952
  run_appium: APPIUM_SERVER=run
2969
- appium_1x: APPIUM_SERVER_VERSION=1
2970
2953
 
2971
2954
 
2972
2955
  #==============
@@ -38,11 +38,7 @@ module TestCentricity
38
38
  # Check to see if Appium Server is running
39
39
  #
40
40
  def running?
41
- endpoint = if ENV['APPIUM_SERVER_VERSION'] && ENV['APPIUM_SERVER_VERSION'].to_i == 1
42
- 'http://0.0.0.0:4723/wd/hub/sessions'
43
- else
44
- 'http://0.0.0.0:4723/sessions'
45
- end
41
+ endpoint = 'http://0.0.0.0:4723/sessions'
46
42
  response = false
47
43
  begin
48
44
  response = Net::HTTP.get_response(URI(endpoint))
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '4.6.10'
2
+ VERSION = '4.6.11'
3
3
  end
@@ -310,13 +310,7 @@ module TestCentricity
310
310
  @capabilities
311
311
  end
312
312
  # specify endpoint url
313
- if @endpoint.nil?
314
- @endpoint = if ENV['APPIUM_SERVER_VERSION'] && ENV['APPIUM_SERVER_VERSION'].to_i == 1
315
- 'http://127.0.0.1:4723/wd/hub'
316
- else
317
- 'http://127.0.0.1:4723'
318
- end
319
- end
313
+ @endpoint = 'http://127.0.0.1:4723' if @endpoint.nil?
320
314
  register_remote_driver(Environ.browser, caps)
321
315
  end
322
316
 
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.6.10
4
+ version: 4.6.11
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: 2025-11-07 00:00:00.000000000 Z
11
+ date: 2025-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: axe-core-cucumber