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.
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
Post a Comment