I want to completely stop my script from executing at a certain step for X seconds before continuing. I tried time.sleep(), I tried Seleinum implicit waits, I tried flushing the output, and my script still continues executing and outputting during the "sleep" period.
Basically I have the following:
Make AJAX call to PHP file -> PHP file runs Python script with arguments -> Python connects using Selenium -> Python/Selenium does something and needs to stop for X seconds before continuing.
I tried numerous ways and it always keeps running despite the sleep method.
Help please.