android - Unable to capture text from prompt by using UIAUTOMATER,Appium and python -


i new mobile automation.i trying automate login functionality 1 android app.when ever clicking on login button without providing username getting 1 prompt message field cannot empty. alert box unable capture through uiautomater.i want string prompt. can suggest how proceed .i providing image getting clear idea.

https://lh3.googleusercontent.com/-q0xeth2ihns/vvmtk_bjvpi/aaaaaaaaaak/yzipnoptwtm/w506-h281/uiautomater.jpg

i had similar problem uiautomatorviewer not capturing toast messages. solved it.

ocr solution.

i made full anser here: appium toast message

first install tesseract this:

sudo apt-get install tesseract 

then can use below in terminal:

tesseract example.jpg out 

install pytesseract using pip:

pip install pytesseract 

install pillow if not done yet:

pip install pillow 

install tesseract-ocr:

sudo apt-get install tesseract-ocr 

then use in python code this:

from pil import image import pytesseract  # path file im = image.open('test.png') print pytesseract.image_to_string(im) 

the steps linux, idea.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -