AR
Добавить Assertion ко второму запросу, сравнить поле ResponceCode с ${Code1}
16.12 Sharing variables between threads and thread groups
Variables are local to a thread a variable set in one thread cannot be read in another. This is by design. For variables that can be determined before a test starts, see Parameterising Tests (above). If the value is not known until the test starts, there are various options:
Store the variable as a property - properties are global to the JMeter instance
Write variables to a file and re-read them.
Use the bsh.shared namespace - see 16.8.2 Sharing Variables
Write your own Java classes
Another way to pass variable between the threads i