Article Overview:
This article will cover how you can achieve the following:
How to click on a button which is not directly clickable.
Problem Statement:
User is not able to click on 'View extract', 'Underwriter dropdown icon' and 'New status button' etc.
Solution:
Troubleshooting:
User is using NLP like
- Click on "View Extract"
- Click on "Underwriter Search"
- Click on "New status"
To resolve the issue of not being able to click on specific buttons due to missing element types in NLP commands, you can enhance the commands by explicitly specifying the type of element you want to interact with. This will help to identify and interact with the correct elements, whether they are buttons, inputs, or other types of elements.
Here’s how you can frame your NLP commands with the element type included:
-
Click on button "View Extract"
- This specifies that the action is targeting a button with the label "View Extract".
-
Click on input "Underwriter Search"
- This specifies that the action is targeting an input field with the label "Underwriter Search".
-
Click on button "New status"
- This specifies that the action is targeting a button with the label "New status".
By adding the element type like button
or input
click on the desired element.
Comments
0 comments
Please sign in to leave a comment.