I am automating the Mobile web browser on Android and iOS devices.
I am using Page Object model Framework using Java + Appium.
Wrote same script for Chrome and Safari browser.
But Safari takes more time than chrome browser.
For example:
Login scripts takes 5 minutes to finish on Android Chrome.
Login scripts take 40 minutes to finish on iPhone safari browser.
Even it takes 5 to 10 seconds to perform any kind of manipulation while working iOs devices.
Thank you
I got the solution for the slow execution speed on iPhone safari.
I have faced this issue due to Dependencies.
Previously I was using following dependencies:
So I have moved following dependencies:
Now test scripts are running very fast on iPhone Safari.
For more information please go through this link Appium - iPhone Safari
Thank you