I am very new to Python and Behave. In my step file, test_steps.py
, I have imported the following:
from behave import given, when, then, step
from behave_http.steps import *
from datetime import datetime
import time
import pdb
import xmltodict
import requests
If I created another step file, test2_steps.py
, I had to import above again.
Is there a way to avoid that?
Thank you for your help!