Search code examples
karateui-automationappian

Appian UI automation


I am try to integrate the karate with #Appian low code platform application UI, facing some issue

  1. failed to pass the dynamic data (except hard codded data)
  2. failed to automate editable grid
  3. failed to automate some UI component available only in Appian

Can any one give the solution to pass the data dynamically in ui automation


Solution

  • 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:

    • def data= read('data.json')
    • def username = data.username
    • def password = data.password

    And input('input[name=un]', username)

    And input('input[name=pw]', password)