In this video it shows how one can capture the touch points of the user on the phone screen and use it to take snippet of the screen as image. For screenshot it uses part of the code shown in the below page:https://programmerworld.co/android/how-to-take-screenshot-from-your-android-11-app/ However, it modifies the code to show…
Tag: coordinates
How to take locators (xpath, etc) in Selenium and check locators in browser before using it in code to minimize the error?
In this video we will show you how to take locators (xpath/CSS Selector/id/name/ link text/class Name/tagName/partial link text) and checking it in browser (debugger tool) to make sure locator is correct and unique. Locators are nothing but exact location of any element on web page. I hope you like this…
How to plot arrays (X and Y coordinates) on axes in your Android App without using dependencies or libraries?
In this video it shows how to plot any graph with x and y coordinates in a view in your Android App. It uses Surface view and Image view to plot the coordinates on the plane, 2-dimensional plane. It takes a simple array of 5 numbers or points as x…