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

Categories

0 votes
562 views
in Technique[技术] by (71.8m points)

How to match the following in karate

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

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

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...