Giter Site home page Giter Site logo

Comments (8)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
The security exception that you get means that the test cases are trying to 
interact
with an application that they are not allowed to interact with (e.g. another
application or the platform). This tells me that Note pad does not start when 
your
test cases start to execute. One example when this can happen is when the 
emulators
lock screen is active. Then the test cases try to interact with the lock screen
instead and therefore a security exception is thrown. 

Can you please make sure that Note pad does indeed start when you select the 
example
test project and click run application as Android JUnit Test. If it does not 
start,
try to run Note pad separately by right clicking it and select run as Android
Application. If that is successfull then try to run the test cases again. 

If this does not work then please get back to me with more information and 
observations. 

Original comment by [email protected] on 22 Feb 2010 at 4:58

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Thanks for your quick reply. You were correct. This error is occurring because 
the
lock screen is active. If I unlock the emulator after it starts and then start 
the
test, it will run. 

Is there a solution so that I can run this as an automated test and not have to
manually go to the home screen?

Original comment by [email protected] on 22 Feb 2010 at 5:24

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Sorry, the above reply is from jaglassjr. I was signed into another account.

Original comment by [email protected] on 22 Feb 2010 at 5:25

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Once you have unlocked the emulator there is no need to go the home screen. Its 
just
the first time when you start the emulator that you need to unlock it. Im sure 
there
must be an adb command that you can send to the emulator in order to unlock it. 
Try
looking at different adb commands and see if you find one that suites your 
needs. 

Original comment by [email protected] on 22 Feb 2010 at 6:49

  • Changed state: Invalid

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
U can do the following:

KeyguardManager km = 
      (KeyguardManager) context.getSystemService(Context.KEYGUARD_SERVICE);
if (km.inKeyguardRestrictedInputMode())
{
  KeyguardManager.KeyguardLock lock = km.newKeyguardLock("some_tag");
  lock.disableKeyguard();
  SystemClock.sleep(2000);
}

Original comment by [email protected] on 13 Oct 2010 at 1:52

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
That's not a very good workaround; it requires adding that code to the 
application under test and adding the android.permission.DISABLE_KEYGUARD 
permission to your app.

This is described here: 
http://developer.android.com/intl/fr/guide/topics/testing/testing_android.html#U
nlockDevice

Perhaps this is also useful for automatically unlocking the emulator: 
http://bit.ly/cMrbEM

Original comment by [email protected] on 13 Oct 2010 at 8:23

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
I am using SMS appliction in my project while testing through robotium when it 
goes into SMS app it is not coming back to my applicion......if anyone knows 
solution plz reply as soon as possible.  

Original comment by [email protected] on 18 Nov 2010 at 4:35

from robotium.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
I have the same problem but I try to test UI with robotium.
Also I build project with gradle. When I worked with eclipse/IDEA(without 
gradle) it worked fine.

Original comment by [email protected] on 26 Feb 2014 at 9:10

from robotium.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.