6.then I clicked on "Launch" button.
BUT My application didn't Start.
Can You please Help me for the same.
Thanks!
https://groups.google.com/forum/#!topic/appium-discuss/JtZ0u17DyLo follow the whole thread :) ull get the solution
Hello mummana,Thanks! It was a great help :)I just wann ask one more thing, through Appium inspector can we directly launch .apk file stored on my System?I will list you what I have done.1.I have installed Appium for Windows2.Run the command npm install3.Run the command reset.bat4.Started the appium inspector (i.e appium exe)5.In "Add path" I have given the path for my .apk file. (See the below screenshot)
\
--
http://appium.io
---
You received this message because you are subscribed to the Google Groups "Appium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to appium-discus...@googlegroups.com.
Visit this group at http://groups.google.com/group/appium-discuss.
For more options, visit https://groups.google.com/groups/opt_out.
also 5th point is not clear for me..
1. Download Appium:
a. From appium.io
b. Extract into a folder and place it in C:\
2. Download and install ADT:
a. Download ADT from Google
b. Unzip ADT. Note the ‘sdk’ folder address.
c. Create ANDROID_HOME environment variable and point it to your ADT’s sdk folder.
d. Add the paths to ‘tools’ and ‘platform-tools’ to your PATH variable
3. Download node.js Windows installer from http://nodejs.org/download/ . Install it.
4. Download and install Maven
a. Download the latest Maven version for your system from http://maven.apache.org/download.cgi
b. Extract the downloaded file to a folder (recommend shortening folder’s name and moving it to C:\)
c. If you don’t have Java JDK (not JRE) installed, download and install it.
d. Create or edit a JAVA_HOME variable and point it to your JDK folder. Then add %JAVA_HOME%\bin to your PATH variable.
e. Create or edit an M2_HOME variable and point it to your extracted Maven folder
f. Create or edit an M2 variable and point it to %M2_HOME%\bin
g. Add both variables to your PATH
h. To check that Maven is properly installed, open cmd window and type mvn –version
i. Depending on the network your system is in, you might have to configure proxy settings for Maven to work. Edit the proxy settings in the settings.xml file in the ‘conf’ folder inside your Maven extracted folder. In particular, edit this section:
<proxy>
<id>http_proxy</id>
<active>true</active>
<protocol>http</protocol>
<username>proxyuser</username>
<password>proxypass</password>
<host>proxy.somecompany.com</host>
<port>911</port>
<nonProxyHosts>*.somecompany.com</nonProxyHosts>
</proxy>
5. Download the test assets and copy them into the Appium folder (In my group, I have created the test classes for them. Sorry, I can't provide them here. Maybe you can use the example test assets?)
6. Open the Appium folder and double click on Appium.exe. Then ‘Launch’ it with the default setting. If it does not launch, then there might be a problem with your node.js server installation.
7. Perform setup steps for your target application (in a separate document).
8. Open cmd window and change directory to where your test assets are.
9. Execute:
mvn clean install -Dtest=[Your test class, i.e., the .java file without the .java extension and square brackets]<proxies>
<!-- proxy
| Specification for one proxy, to be used in connecting to the network.
|
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username>proxyuser</username>
<password>proxypass</password>
<host>proxy.host.net</host>
<port>80</port>
<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
-->
</proxies>
--
http://appium.io
---
You received this message because you are subscribed to the Google Groups "Appium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to appium-discus...@googlegroups.com.
Visit this group at http://groups.google.com/group/appium-discuss.
For more options, visit https://groups.google.com/d/optout.
my apk file is located there. The location of my apk file is right
--