How to start appium server programmatically in Python
问题 I want to write a android test framework using Appium and python. Appium link: http://appium.io/ So after installing appium with npm, to start its server I need to execute the command "appium" in terminal.It will start the server. It looks something like this after starting: ranits-MacBook-Pro:$ appium [Appium] Welcome to Appium v1.8.1 [Appium] Appium REST http interface listener started on 0.0.0.0:4723 But I need to start the appium server from my code using python? Any help? 回答1: First of