I am try to integrate the karate with #Appian low code platform application UI, facing some issue
Can any one give the solution to pass the data dynamically in ui automation
respond to failed to pass the dynamic data (except hard codded data)
you can try this, it worked for me
data.json
{
"username" : "ABC",
"password": "ABC@123"
}
Feature file:
And input('input[name=un]', username)
And input('input[name=pw]', password)