@yangchengtest
Navigate to the following directory in your appium installation
AppiumForWindows-1.2.4.1\Appium\node_modules\appium\lib\
Open up the appium.js file and edit the following parameters.
this.defCommandTimeoutMs = this.args.defaultCommandTimeout;
this.commandTimeoutMs = this.defCommandTimeoutMs;
as follows
this.defCommandTimeoutMs = this.args.defaultCommandTimeout * 5000;
this.commandTimeoutMs = this.defCommandTimeoutMs * 5;
this will be enough to run the tests.
Cheers