Kantu: Click not reponse with search box suggestions

Hi all,
I have a very simple set of instructions that I want Kantu to perform:
Type keywords in searchbox → wait for suggestions appear → Click suggestion

That’s all, but Kantu does not click suggestions box or kantu did but event not reponse.

I used two methods, Click and Xclick, but the results were the same.

Manually Actions:
http://recordit.co/XU26fjczlK

With Kantu:
http://recordit.co/W3duujFVNC

I’m using Chrome version 75.0.3770.100
Kantu Lastest Version

Is there is an equivalent command or solutions for this in Kantu?

Source JSON:
{
“Command”: “XClick”,
“Target”: “//input[contains(@placeholder,‘Tìm kiếm nhân viên’)]”,
“Value”: “”
},
{
“Command”: “type”,
“Target”: “//input[contains(@class,‘search-user-textbox__input’)]”,
“Value”: “user”
},
{
“Command”: “waitForVisible”,
“Target”: “//div[@class=‘search-user-result-list__item__email’][contains(.,‘userb@xyzx’)]”,
“Value”: “5000”
},
{
“Command”: “mouseOver”,
“Target”: “//div[@class=‘search-user-result-list__item__email’][contains(.,‘userb@xyzxyz.com’)]”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “//div[@class=‘search-user-result-list__item’]”,
“Value”: “”
},
{
“Command”: “XClick”,
“Target”: “//div[@class=‘search-user-result-list__item’]”,
“Value”: “”
}

And the code of macro is?

sorry, I forgot !
Updated !

Try using XClick and XMove - Real User Mouse Click Event Simulation, Robotic Process Automation (RPA) for mouse over and do not touch mouse. It must work.

Thanks for your help, but the result still the same.
I try mouseover, click , Xclick , Xmove ,… and I do not touch mouse. Only Kantu …
Command valid and no error.
Anyways really thanks. I still find how solve this problem. :cry:

Hi

To solve this you must use Xclick and xtype.

Xclick | Locator
Xtype | username
XType | {KEY_DOWN} XType | {KEY_ENTER}

I already automate more similar cases like this.

Xclick set the focus in the form
Xtype write with keyboard emulation (write in every part of the desktop or tbrowser)

{KEY_DOWN} and {KEY_ENTER} select the username and confirm.

Thanks for your help.

First, I manually perform follow that instruction:
Type keywords in searchbox -> wait for suggestions appear -> Using KEY_DOWN -> then Press ENTER

but nothing happen. I think my website is not support ENTER key for get suggestions value.

Second, I try deploy it on Kantu:
Source JSON:
{
“Command”: “XClick”,
“Target”: “//input[contains(@placeholder,‘Tìm kiếm nhân viên’)]”,
“Value”: “”
},
{
“Command”: “XType”,
“Target”: “user”,
“Value”: “”
},
{
“Command”: “waitForVisible”,
“Target”: “//div[@class=‘search-user-result-list__item__email’][contains(.,‘userb@xyzx’)]”,
“Value”: “5000”
},
{
“Command”: “XType”,
“Target”: “”,
“Value”: “{KEY_DOWN}”
},
{
“Command”: “XType”,
“Target”: “”,
“Value”: “{KEY_ENTER}”
},

Of course nothing happen! The result is still the same as video I posted before.

Maybe I do something wrong ?