I have a scenario. I have added a header in background section. Now all scenarios are using that header except 2 scenarios. How can I remove already added header from those scenarios?
Feature: Some test
background:
* url url
* header foo = bar
* payload = read('classpath:payload.json')
Scenario:
Given request payload.create
# I want to remove **foo** header
When method post
Then status 201
Any solution?