Python-Behave,在mutliple子目录中运行功能

时间:2017-01-10 20:49:17

标签: python bdd python-behave

如何使用这种文件结构运行行为测试:

<!DOCTYPE html>
<html><head></head><body><div></div></body></html>

我希望能够在其正确的页面中组织功能和步骤。目前,我可以一次运行测试1文件夹,步骤没有任何子文件夹。

示例:

+-- features/
     +-- user_page/
     |     +-- user_crud.feature   
     |     +-- user_search.feature 
     +-- customer_page/
     |     +-- customer_crud.feature
     |     +-- customer_search.feature
+-- steps/
     +-- user_page/
     |     +-- user_crud.py
     |     +-- user_search.py
     +-- customer_page/
     |     +-- customer_crud.py
     |     +-- customer_search.py

1 个答案:

答案 0 :(得分:0)

根据Behave的文档,您似乎必须直接将步骤定义放在steps文件夹中,除非您想要触摸某些源代码。

为了organize features and steps,我建议你使用标签。或者,如果您的意思是get better result organize features and steps,则可以尝试使用Junit或JSON格式化程序