You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was seeing an issue at def start(self, **kwargs: Any) -> sp.Popen: function with error, "Appium has failed to start on {host}:{port} within {timeout_ms}ms timeout"
#778
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Appium was not starting on Mac with python3.7 via code
Solution:
Made a change at
if not(self.is_running or (timeout_ms > 0 and not poll_url(host, port, status_url_path, timeout_ms))):
//added brackets after not
The text was updated successfully, but these errors were encountered:
Appium was not starting on Mac with python3.7 via code
Solution:
Made a change at
if not(self.is_running or (timeout_ms > 0 and not poll_url(host, port, status_url_path, timeout_ms))):
//added brackets after not
The text was updated successfully, but these errors were encountered: