python接口测试踩坑系列2

Q:接口入参需要传入当前的时间和隔天的时间并且要匹配数据驱动的Excel表?

A:先获取当前的时间和隔天时间,在这俩个时间做为变量传入入参

#获取当前时间

def hotelnowtime(self):

    arrival_date = datetime.datetime.now().strftime('%Y-%m-%d')

    return arrival_date

#获取下一天时间

    def hotelnexttime(self):

        nextdaytime = datetime.datetime.now() + datetime.timedelta(hours=24)

        departure_date = nextdaytime.strftime('%Y-%m-%d')

        return departure_date

你可能感兴趣的:(python接口测试踩坑系列2)