Extending the time appium server is waiting for any request

Hi guys,
i’m using python idle to debug/go through testing steps. The problem is appium server waits for 60secs and close the session. Is there a way to disable this option or extend the time?

Add this capability:
desired_caps[‘newCommandTimeout’] = ‘5000’

I’ve got it running for 5000 secs.

Heres a link to the rest of these server capabilities:
http://appium.io/slate/en/v1.0.0/?python#appium-server-capabilities

1 Like

Thanks man. That was useful.