Using Karate, according to Karate - is it possible to find element according to part of its parameter I have tried to do that using:
* def filter = function(x){ return x.attribute('placeholder').startsWith('Very') }
* def list = locateAll('input[placeholder]', filter)
But I have no idea how to use it for inserting the value. I have tried this:
* retry().input(list[0], '12312312311111')
and this:
* retry().input('list[0]', '12312312311111')
but neither worked.
Have you any idea what is wrong in syntax?
Thank you.