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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +0 -17
- data/lib/testcentricity_web/appium_server.rb +1 -5
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/web_core/webdriver_helper.rb +1 -7
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2185f428931eb2ff4cf1c50195cba1c7c504497b928e040ab310783eca6c3dc5
|
|
4
|
+
data.tar.gz: e26b18cf4ab4472479ee832643e07ce2ecf38daaa49646ae3cbac1a582c3819d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51888898939d4dad21cffdaec1ffca20b563bea45281d7d133dfd81266eb198d0b33e8fe7a4dc54b7b0d02c73d4958fa88e4f5ed57cdec73fa0723574db5dc28
|
|
7
|
+
data.tar.gz: a8671251ac33cf625e0cf997af13b8a8ee92989604321812943dfe9ce676ee32765cd49c675477e66ab8b7b2dbe6db39a66cb44914ab93dc14fa2aca83f234eb
|
data/CHANGELOG.md
CHANGED
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 =
|
|
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))
|
|
@@ -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.
|
|
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-
|
|
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
|