You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In makemytrip.com when trying to locate input fields due multiple input fields being present in the page wrong locatr is sent. Most of the times the llm sends id of a read only input.
Llm has no idea if an element is clickable, hover able, this is because we do not provide any information about these properties of the element in the minified html.
Fix
Add attribute called data-supported-primitives.
This will have hold the following comma separated values: click, hover, input_text, select.
With these attributes addition LLM will have much more clarity on which locatr id to pick.
The text was updated successfully, but these errors were encountered:
The current html minifier is not working properly on reedit.com, www.flipkart.com.
Problems:
makemytrip.com
when trying to locateinput
fields due multiple input fields being present in the page wrong locatr is sent. Most of the times the llm sends id of a read only input.clickable
,hover able
, this is because we do not provide any information about these properties of the element in the minified html.Fix
data-supported-primitives
.click
,hover
,input_text
,select
.locatr id
to pick.The text was updated successfully, but these errors were encountered: