JsonPath和API自动化的新功能需要建议我如何使用条件提取低于JSON的值

问题描述

from datetime import date

current_year = (date.today().year)
print('What is your age?') 
myAge = input()
print('future_year?')
your_age_in_a_future_year= input()
future_age= int(myAge)+ (int(your_age_in_a_future_year)) - int(current_year)

def process ():
    if future_age > 0:
        print(future_age)
    else:
        print('do you really want to go back in time?,enter "yes" or "no"')
    answer = input()
    if answer =='yes':
        print (future_age)
    if answer == 'no':
        print ('cya')
    while answer != 'yes' or 'no':
        print ('enter correct response')
        process ()
        
process()

这是我的JSON,当且仅当userGroup具有组名称为aAutoGroupMarked12时,才想在其中提取ccoId。我是API自动化和JsonPath的新手。 在我的公司中,我们被告知要使用io.rest-assured API的JsonPath类。有人可以给我一些建议,我应该如何编写一个返回ccoId值的路径

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)