Type text not recognized by input

hi my problem is very easy but i can’t any idea?

i have a input type

<input _ngcontent-dlx-c6="" class="form-control input-text-formulario input-placa ng-touched ng-dirty ng-valid" placeholder="XXX XXX" type="text" maxlength="6">

when i write i can search a result
when i use rpa with this

 {
      "Command": "type",
      "Target": "xpath=/html/body/app-root/app-broker/div/div[2]/div/div/app-broker-emission/div/div[2]/div/div[2]/div/div[2]/div/div/div/div/div/div/input",
      "Value": "AHD317"
    }

i don’t see any result in my web
i try with “Command”: “sendKeys”, but the problem is same any idea? thanks

Post url page or try to use different xpath.

Thanks for your answer, the URL y from my work

but i fix the problem! with this

the input work with javascript and not recognized my text but i use this

{
      "Command": "store",
      "Target": "AHD317",
      "Value": "!clipboard"
    },
    {
      "Command": "XClick",
      "Target": "PROTECTAFINAL_dpi_96.png",
      "Value": "#doubleclick"
    },
    {
      "Command": "XType",
      "Target": "${KEY_CTRL+KEY_V}",
      "Value": ""
    }

so, first i creat a clipboard text and i paste this with xclick and xtype, all it’s ok now thanks again!!

1 Like