google-apis-testing_v1 0.16.0 → 0.17.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ccac6ce30dbd7acf2a5dff4ef0c11bffb6efd12805be41b68a25f230a196c44e
|
|
4
|
+
data.tar.gz: 7cb37d10155828897bd6edba2ab9ecce22c36fd62e12dd258577db2c42f1f882
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40fbba5a019950c5e964e610f183c62a8fb908548c1c5925ff3d22463cd1e70d31ff5f8c690e40ff98b0ff5d22ab86843d4ff2190fe63237b08b5dc40154bfc6
|
|
7
|
+
data.tar.gz: c8335ea051ab660eac5b362b38674d85ddf6bb97da604b3ce14a9899493df17e07936ea91fdcfd58fe37c48a5fa95fe1ed9ab5e19b45e3e04372b3a0ef728ece
|
data/CHANGELOG.md
CHANGED
|
@@ -410,6 +410,17 @@ module Google
|
|
|
410
410
|
# @return [String]
|
|
411
411
|
attr_accessor :app_package_id
|
|
412
412
|
|
|
413
|
+
# The max depth of the traversal stack Robo can explore. Needs to be at least 2
|
|
414
|
+
# to make Robo explore the app beyond the first activity. Default is 50.
|
|
415
|
+
# Corresponds to the JSON property `maxDepth`
|
|
416
|
+
# @return [Fixnum]
|
|
417
|
+
attr_accessor :max_depth
|
|
418
|
+
|
|
419
|
+
# The max number of steps Robo can execute. Default is no limit.
|
|
420
|
+
# Corresponds to the JSON property `maxSteps`
|
|
421
|
+
# @return [Fixnum]
|
|
422
|
+
attr_accessor :max_steps
|
|
423
|
+
|
|
413
424
|
# A set of directives Robo should apply during the crawl. This allows users to
|
|
414
425
|
# customize the crawl. For example, the username and password for a test account
|
|
415
426
|
# can be provided.
|
|
@@ -445,6 +456,8 @@ module Google
|
|
|
445
456
|
@app_bundle = args[:app_bundle] if args.key?(:app_bundle)
|
|
446
457
|
@app_initial_activity = args[:app_initial_activity] if args.key?(:app_initial_activity)
|
|
447
458
|
@app_package_id = args[:app_package_id] if args.key?(:app_package_id)
|
|
459
|
+
@max_depth = args[:max_depth] if args.key?(:max_depth)
|
|
460
|
+
@max_steps = args[:max_steps] if args.key?(:max_steps)
|
|
448
461
|
@robo_directives = args[:robo_directives] if args.key?(:robo_directives)
|
|
449
462
|
@robo_mode = args[:robo_mode] if args.key?(:robo_mode)
|
|
450
463
|
@robo_script = args[:robo_script] if args.key?(:robo_script)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module TestingV1
|
|
18
18
|
# Version of the google-apis-testing_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.17.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220310"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -539,6 +539,8 @@ module Google
|
|
|
539
539
|
|
|
540
540
|
property :app_initial_activity, as: 'appInitialActivity'
|
|
541
541
|
property :app_package_id, as: 'appPackageId'
|
|
542
|
+
property :max_depth, as: 'maxDepth'
|
|
543
|
+
property :max_steps, as: 'maxSteps'
|
|
542
544
|
collection :robo_directives, as: 'roboDirectives', class: Google::Apis::TestingV1::RoboDirective, decorator: Google::Apis::TestingV1::RoboDirective::Representation
|
|
543
545
|
|
|
544
546
|
property :robo_mode, as: 'roboMode'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-testing_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.17.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|