I am doing a testing
I have setup an HTTP Authorization Manager to manage my Basic Browser Authentication. This is declared before my HTTP request - making each HTTP request header contains
Authorization: SOMETHING sOmeGibber1SHCOdes...
As some point in my testing, I need to add a new entry in the Authorization header. So I created an HTTP header Manager and added something like:
Authorization: somethingElse @n0therGibber15hC0de...
and this overrides my existing header setup by my HTTP Authorization Manager
Question:
If I need both Authorization header - is there a workaround?
Additional info:
I tried extracting the values using regext extractor and concatenate the strings in the HTTP Header manager... does't seem to work. I think simply copying the header created by HTTP Authorization manager and putting it directly to the HTTP Header Manager is not being recognized as an authentication by jmeter.