How to test or style the Order Success Page Or how to stop Success Page redirecting in Magento 2
You can stop checkout success page redirection after refresh page, check below code
vendor/magento/module-checkout/Controller/Onepage/Success.php
Comment Out Line No : 22
//$session->clearQuote();
Now you can debug checkout success page.
Kindly open Magento\Checkout\Controller\Onepage\Success.php and comment below line
$session->clearQuote();
for temporary purpose.