Class: Google::Apis::ToolresultsV1beta3::OverlappingUiElements
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::OverlappingUiElements
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb
Overview
A warning that Robo encountered a screen that has overlapping clickable elements; this may indicate a potential UI issue.
Instance Attribute Summary collapse
-
#resource_name ⇒ Array<String>
Resource names of the overlapping screen elements Corresponds to the JSON property
resourceName. -
#screen_id ⇒ String
The screen id of the elements Corresponds to the JSON property
screenId.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OverlappingUiElements
constructor
A new instance of OverlappingUiElements.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OverlappingUiElements
Returns a new instance of OverlappingUiElements.
2055 2056 2057 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2055 def initialize(**args) update!(**args) end |
Instance Attribute Details
#resource_name ⇒ Array<String>
Resource names of the overlapping screen elements
Corresponds to the JSON property resourceName
2048 2049 2050 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2048 def resource_name @resource_name end |
#screen_id ⇒ String
The screen id of the elements
Corresponds to the JSON property screenId
2053 2054 2055 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2053 def screen_id @screen_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2060 2061 2062 2063 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2060 def update!(**args) @resource_name = args[:resource_name] if args.key?(:resource_name) @screen_id = args[:screen_id] if args.key?(:screen_id) end |