Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

My database output is as follows {web,app}

Output from response is as follows ["web","app"]

How to match these two in karate?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
568 views
Welcome To Ask or Share your Answers For Others

1 Answer

Your database output {web,app} doesn't follow any proper data structure.

it would be difficult to iterate over this.

I assume it is a String

Edit:

if it is a string you write a js to get that as a convenient data structure (array)

* def pList = function(x) { return x.replace("{","").replace("}","").split(",") }

now pass your particular value to this function and it would give you an array of values which you can easily match


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...