This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.
1 / 7
Aug 2014

Post bugs or issue here

Please mark your post with the following tags:

  • Platform you are automating (iOS or Android)
  • Appium version
  • Simulator/Emulator or Real Device
  • The language you are using for writing tests (client binding)
  • Your OS

If you have any server logs, please include them at the bottom of your post inside a code block ( ``` )

  • created

    Aug '14
  • last reply

    Dec '18
  • 6

    replies

  • 2.6k

    views

  • 6

    users

  • 6

    links

1 month later

Hi Jonahss,

Could you answer to my post. I am getting error while running junit test using appium on Android Emulator.
I have posted my error in detail.

7 months later

Hi Jonahss,

Can you please help me in installing Appium server on android studio.? Is it compatible for android studio? or do I prefer eclipse?

any quick help will be appreciable.

1 month later

Hi Jonahss,

Can you please help me in launching android app by using AndroidDriver constructor .
Actually i am trying to launch android app by using following code.

void launchApp()

{
     try {

         DesiredCapabilities capabilities = new DesiredCapabilities();
         capabilities.setCapability("platformVersion", "4.4");
         capabilities.setCapability("platformName", "Android");
         capabilities.setCapability("app", "D:/ETPortfolio/app/ET_V2.0.0.apk");
         capabilities.setCapability("appActivity", "com.et.reader.activities.StartPageActivity");
         capabilities.setCapability("appPackage", "com.et.reader.activities");
         capabilities.setCapability("deviceName", "Android")
         AndroidDriver driver =  new AppiumDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);
       } catch(Exception e){
            e.printStackTrace();

       }

But i get an error ie. 'Driver can not be resolved a variable'. Please tell me ,Can i launch the app using AndroidDriver or not??? Any quick help will be appreciable.

Perhaps my main post is unclear. Please post in the general forum, and give your post the "Issues/Bugs" category. Thanks.

1 year later

Not able to automate scroll down in windows universal application.

Appium version: 1.6.0
Application: windows

2 years later