In general I want to write a monkeyrunner program that turns on Wifi on my android phone if it's not on already. I have the following code:

from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
package='com.android.settings'                                          
activity='.Settings'                           
component_name=package + "/" + activity                        
device = MonkeyRunner.waitForConnection()                      
device.startActivity(component=component_name)
device.press('KEYCODE_DPAD_CENTER', "DOWN_AND_UP")
device.press('KEYCODE_DPAD_DOWN')
device.press('KEYCODE_DPAD_DOWN')
device.press('KEYCODE_DPAD_DOWN')
device.press('KEYCODE_DPAD_CENTER', "DOWN_AND_UP")
device.press('KEYCODE_DPAD_CENTER', "DOWN_AND_UP")

This code navigates to the screen where the wifi networks are detected. As I scroll down I want to check to see if the current button is for my network and if it is, and is not turned on, turn it on.

One thought I had was to read the label on the button for comparison. Any help is appreciated.

link|improve this question
feedback

3 Answers

There are two ways that you could accomplish this. Both involve saving images using monkeyrunner result = device.takeSnapshot().

First you could use MonkeyImage.sameAs() to compare the two images, but to do this you would need to get both two images without restarting monkeyrunner as there is no way to load a saved monkeyimaged.

The other way involves using something like http://sikuli.org/ to compare the two images.

link|improve this answer
feedback

This post (monkeyrunner: interacting with views), while doesn't contain the exact answer to your question, should give you the hints to solve your problem using AndroidViewClient.

link|improve this answer
feedback

a workaround is- you can make use of >Add Network option in android,Give the network name you want to connect.It should automatically connect to the added network.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.