I'm trying to connect my project to AWS, but jars could not be found

Thanks @gaurav_bhadauria,
Can u please guide me how i’ll write this testcase,
i wrote like this::

import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.Test;

import io.appium.java_client.android.AndroidDriver;

public class Test1 {

@Test

public void ad() throws MalformedURLException, InterruptedException {
	DesiredCapabilities c = new DesiredCapabilities();
	c.setCapability(CapabilityType.BROWSER_NAME,"");
	c.setCapability("deviceName","");
	c.setCapability("platformName","LINUX");
	c.setCapability("platformVersion","4.2.2");
	c.setCapability("appPackage","");
	c.setCapability("appActivity","");
    
	URL u=new URL("http://127.0.0.1:4723/wd/hub");
	AndroidDriver obj=new AndroidDriver(u,c);
	obj.manage().timeouts().implicitlyWait(5,TimeUnit.SECONDS);
	//Click on login 
	obj.findElement(By.xpath("//*[@text='privately'][@index='0']")).click();
	obj.manage().timeouts().implicitlyWait(20,TimeUnit.SECONDS);
	
	obj.quit();

}
}

@Abdul_Sathar_Beigh Hi,

please reply .

Sir,
I have created zip.xml, pom.xml as well as I have removed all unused imports from tests.

But still I,m facing this error…

mvn clean package
[INFO] Scanning for projects…
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building RoomCheckerAppium 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] — maven-clean-plugin:2.5:clean (default-clean) @ roomchecker —
[INFO] Deleting /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/target
[INFO]
[INFO] — maven-resources-plugin:2.3:resources (default-resources) @ roomchecker —
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/main/resources
[INFO]
[INFO] — maven-compiler-plugin:2.0.2:compile (default-compile) @ roomchecker —
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] — maven-resources-plugin:2.3:testResources (default-testResources) @ roomchecker —
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/resources
[INFO]
[INFO] — maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ roomchecker —
[INFO] Compiling 4 source files to /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/target/test-classes
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.502s
[INFO] Finished at: Mon Apr 25 17:23:04 IST 2016
[INFO] Final Memory: 13M/168M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile (default-testCompile) on project roomchecker: Compilation failure: Compilation failure:
[ERROR] /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/java/testroomchkr/openinspectionTest.java:[23,2] error: annotations are not supported in -source 1.3
[ERROR]
[ERROR] (use -source 5 or higher to enable annotations)
[ERROR] /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/java/testroomchkr/openinspectionTest.java:[49,6] error: generics are not supported in -source 1.3
[ERROR]
[ERROR] (use -source 5 or higher to enable generics)
[ERROR] /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/java/testroomchkr/rvroomstatusTest.java:[23,2] error: annotations are not supported in -source 1.3
[ERROR]
[ERROR] (use -source 5 or higher to enable annotations)
[ERROR] /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/java/testroomchkr/rvroomstatusTest.java:[54,6] error: generics are not supported in -source 1.3
[ERROR]
[ERROR] (use -source 5 or higher to enable generics)
[ERROR] /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/java/testroomchkr/openissueTest.java:[20,2] error: annotations are not supported in -source 1.3
[ERROR]
[ERROR] (use -source 5 or higher to enable annotations)
[ERROR] /home/bluepi/Desktop/RoomCheckerGitlab/roomchecker/appium/src/test/java/testroomchkr/rmchkerloginTest.java:[21,2] error: annotations are not supported in -source 1.3
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

@Abdul_Sathar_Beigh

Sir, my application needs to add contacts to work. How can I do that?

Do, I need to write a separate test case for it or I can upload .vcf file of contacts on device farm?
Please help…

I am using Appium atomation test framework and gradle as the build tool… so mvn clean package doesn’t work for me… if i give gradle clean package it gives an error saying task ‘package’ not found in the project while generating the jar file… can any one please give me a solution to this problem??

I am finding an issue while uploading a zip-with-dependencies.zip file into device farm. It’s giving me a error while uploading. Error goes like this “There was a problem processing your file. We could not find a class file within the tests JAR file. Please unzip your test package and then unjar the tests JAR file, verify that at least one class file is within the JAR file, and try again.” How do I get rid of this error while uploading the file. Is there something wrong in my configuration.

I have tried everything in http://docs.aws.amazon.com/devicefarm/latest/developerguide/troubleshooting-appium-java-testng.html but no luck. Can some body help me with this?

Hi @Abdul_Sathar_Beigh,

I am getting below mentioned error for my code on executing the maven command in my workspace through cmd prompt: mvn clean package

Can u pls help me on this asap:

PA-MAC-013:utelly qa$ mvn clean package
[INFO] Scanning for projects…
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building utelly 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] — maven-clean-plugin:2.5:clean (default-clean) @ utelly —
[INFO] Deleting /Users/qa/Documents/workspace/utelly/target
[INFO]
[INFO] — maven-resources-plugin:2.6:resources (default-resources) @ utelly —
[INFO] Using ‘UTF-8’ encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/qa/Documents/workspace/utelly/src/main/resources
[INFO]
[INFO] — maven-compiler-plugin:3.1:compile (default-compile) @ utelly —
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] — maven-resources-plugin:2.6:testResources (default-testResources) @ utelly —
[INFO] Using ‘UTF-8’ encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/qa/Documents/workspace/utelly/src/test/resources
[INFO]
[INFO] — maven-compiler-plugin:3.1:testCompile (default-testCompile) @ utelly —
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 2 source files to /Users/qa/Documents/workspace/utelly/target/test-classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[2,25] package org.testng does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[2,1] static import only from classes and interfaces
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[6,27] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[7,27] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[8,27] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[9,34] package org.openqa.selenium.remote does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[10,34] package org.openqa.selenium.remote does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[11,1] package org.testng.annotations does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[12,1] package org.testng does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[13,1] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[14,1] package org.openqa.selenium.remote does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[15,1] package org.testng.annotations does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[20,9] cannot find symbol
symbol: class WebDriver
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[21,10] cannot find symbol
symbol: class BeforeClass
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[42,18] cannot find symbol
symbol: class Test
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[107,18] cannot find symbol
symbol: class AfterClass
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[25,21] cannot find symbol
symbol: class DesiredCapabilities
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[25,60] cannot find symbol
symbol: class DesiredCapabilities
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[38,34] cannot find symbol
symbol: class RemoteWebDriver
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[48,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[48,62] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[53,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[53,66] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[56,61] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[57,25] cannot find symbol
symbol: method assertTrue(boolean)
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[62,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[62,69] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[65,65] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[66,25] cannot find symbol
symbol: method assertTrue(boolean)
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[68,44] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[73,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[73,65] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[76,68] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[77,25] cannot find symbol
symbol: method assertTrue(boolean)
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[79,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[79,62] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[85,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[85,70] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[87,66] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[88,25] cannot find symbol
symbol: method assertTrue(boolean)
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[93,25] cannot find symbol
symbol: class WebElement
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[93,76] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[96,68] cannot find symbol
symbol: variable By
location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[97,25] cannot find symbol
symbol: method assertTrue(boolean)
location: class com.appium.utelly.GetStartedScreen
[INFO] 44 errors
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.815 s
[INFO] Finished at: 2017-03-14T18:11:19+05:30
[INFO] Final Memory: 15M/183M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) on project utelly: Compilation failure: Compilation failure:
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[2,25] package org.testng does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[2,1] static import only from classes and interfaces
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[6,27] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[7,27] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[8,27] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[9,34] package org.openqa.selenium.remote does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[10,34] package org.openqa.selenium.remote does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[11,1] package org.testng.annotations does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[12,1] package org.testng does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[13,1] package org.openqa.selenium does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[14,1] package org.openqa.selenium.remote does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[15,1] package org.testng.annotations does not exist
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[20,9] cannot find symbol
[ERROR] symbol: class WebDriver
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[21,10] cannot find symbol
[ERROR] symbol: class BeforeClass
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[42,18] cannot find symbol
[ERROR] symbol: class Test
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[107,18] cannot find symbol
[ERROR] symbol: class AfterClass
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[25,21] cannot find symbol
[ERROR] symbol: class DesiredCapabilities
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[25,60] cannot find symbol
[ERROR] symbol: class DesiredCapabilities
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[38,34] cannot find symbol
[ERROR] symbol: class RemoteWebDriver
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[48,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[48,62] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[53,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[53,66] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[56,61] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[57,25] cannot find symbol
[ERROR] symbol: method assertTrue(boolean)
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[62,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[62,69] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[65,65] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[66,25] cannot find symbol
[ERROR] symbol: method assertTrue(boolean)
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[68,44] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[73,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[73,65] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[76,68] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[77,25] cannot find symbol
[ERROR] symbol: method assertTrue(boolean)
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[79,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[79,62] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[85,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[85,70] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[87,66] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[88,25] cannot find symbol
[ERROR] symbol: method assertTrue(boolean)
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[93,25] cannot find symbol
[ERROR] symbol: class WebElement
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[93,76] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[96,68] cannot find symbol
[ERROR] symbol: variable By
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] /Users/qa/Documents/workspace/utelly/src/test/java/com/appium/utelly/GetStartedScreen.java:[97,25] cannot find symbol
[ERROR] symbol: method assertTrue(boolean)
[ERROR] location: class com.appium.utelly.GetStartedScreen
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
PA-MAC-013:utelly qa$

Hi Vinyas,

I am currently facing the same issue that you have mentioned in this thread. Could you please help me to resolve it.