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"
Open
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 1.8k
- Forks
- 570
- Avg merge
- 1d 10h
- Merged PRs (30d)
- 24
Description
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
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start in def start(self, **kwargs: Any) -> sp.Popen and inspect the condition involving self.is_running, poll_url(host, port, status_url_path, timeout_ms), and timeout_ms. Reproduce the Appium startup failure on macOS with Python 3.7, then verify that the corrected condition allows startup within the configured timeout.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- mobile
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100