In case you want to add custom wait time you can use simple Custom Script step with the following script:
from PyQt5 import QtTest
SECONDS = 3
QtTest.QTest.qWait(int(SECONDS * 1000))
Change SECONDS variable to the number of seconds you want to wait. If you want to wait less then a second you can just give number of milliseconds as argument to qWait function.