Strictly speaking does not count the first day.
Spent a day, and finally the graduation design to do the same. Actually, it's a lot worse. But peace of mind.
Started trying to install appium yesterday. Detailed information on the official website. Of course, there are some problems.
1. Node. js after installation, follow the simplest method: cmd input: npm install-g Appium
Result: Failed.
Cause: The network connection failed.
It took two hours to reach the late-night campus network with a speed of up to several m/s. As a result, the eyes of the firewall cannot be avoided. Forced to abandon this concise way.
FIX: Download Appium package, unzip after direct software installation.
2, check whether the environment is well-configured.
In cmd input appium, the hint is not an internal command.
Note that the above installation method does not automatically add appium.cmd to path.
Workaround: Locate the directory where Appium.cmd is located in the installation directory, copy, and write to path. The habit is to create a variable appium_home:[path], and then add the variable to path.
[Road strength]: node_modules\.bin in the Appium installation directory
3, Cmd:appium-doctor, hint Android_home not configured well
Workaround: Write the path of the SDK to Android_home and then add it to path
%android_home%\tools;
%android_home%\platform-tools
The above solutions refer to the following links:
Http://www.cnblogs.com/hahanuannuan/p/4152774.html
Appium First Day