I am working with a table with many rows (lets call them a,b,c,d, etc) and with the actual value this rows have in a particular column (that value is a bit 0,1 that can change continously). So a screenshot in a particular moment could be something like this:
Table is not in excel or any other program that let me work with pandas or any similar library. So I have to read the screen directly.
User pass to the program the row that he wants to know and then the program must search for this column and return the value. I am using pyautogui. I am able to find the column and do a "tab" in order to place in the column that I want but I don't know how to read the value there. I tried locateAllOnScreen and seems to not work well (also I dont want all the "1" in the screen, I only want to know if that particular column of that particular row is a 1 or a 0).
Another method that I have though is to do Ctrl+C in the column and then create a txt and paste the value there. After that close the txt and read it with python, but I want to know if there is any other way better than this one.