Slowness Issue while running test steps even if Explicit Wait is given and no exception is thrown after wait

All actions between test steps are taking huge amount of time to interact with App even if Explict wait is given and after that wait no exception is thrown.
No implicit wait and timeout is given still script is running very slow and not throwing any kind of exception.
Is there any specific reason why it is happening?
Also Does anybody faced this issue or any solution someone can suggest?

OS not mentioned.
Example of code absent.
Phone under test absent. Maybe it is Simulator / Emulator ?

no info to guess problem.

OS : Android
Version 11
Real Device
Code Snippet used for click element method :

wait = new WebDriverWait(driver, 10);
//wait.until(ExpectedConditions.visibilityOf(element)).click();
wait.until(ExpectedConditions.elementToBeClickable(element)).click();

It is not throwing exception after 10 seconds. Script seems to be paused