In this video will see how several mouse actions can be performed through Selenium. These mouse actions methods are defined in Actions() class. By using these class will perform all the mouse actions. How to take web element xpath: https://www.youtube.com/watch?v=jPrphm-8njo&list=PLFfOLCbwIxbDCAFRkkvY4szs2HRS_FKaF&index=5 I hope you like this video. For any questions, suggestions…
Tag: delete
How to delete a file from FTP server from your Android App Java code?
In this video it shows the code to delete a file over FTP server from your Android App’s Java code. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other details: GitHub: https://github.com/programmerworld1990/deletefromftpMaven Dependency:…
How to delete a file from GitHub Repository programmatically from your Android App – Java code?
This video shows the java code to delete a file from the GitHub repository. Please refer to the below for steps to committing the file in the GitHub:https://programmerworld.co/android/how-to-commit-a-file-to-github-programmatically-from-your-android-app-java-code/ I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete…
How to programmatically uninstall any other app on your device from your Android App?
In this video it shows the steps to uninstall an Android App programmatically from your Android App using the intent. In this demo it refers to the below webpage for getting the list of the package names of Apps installed on your device – https://programmerworld.co/android/how-to-get-the-list-of-all-the-apps-installed-in-your-android-phone-android-12-api-level-31/ I hope you like this…
Difference between finish() and finishAndRemoveTask() in Android App code.
In this video it shows the difference between the two APIs in Android – finish() vs finishAndRemoveTask(). finish() is basically to minimize the App’s view so that the user cannot see the App’s layout anymore. It is similar to pressing back button from App’s home page to go back to…
How to get alphabets from string (includes special characters, spaces) in Android App using regex?
How to extract or filter out only alphabets from an alphanumeric string (including special characters and spaces) in your Android App using regular expression (regex)? In this video it shows how one can use regular expressions to filter or extract only the alphabets from a string which contains special characters,…
How to store images in SQLite database (insert, update, delete and fetch) in your Android App?
This video shows simple steps to store the image files in your local SQLite database. For storing the Images in the database, unlike simple text or numbers, it uses BLOB field. It first converts the image file (or image) into bitmap. Then it converts the bitmap into bytes by compressing…
How to create a simple text file in your iOS App? – Xcode tutorial using swift language
This Video shows simple steps to create a text file from your iOS App. It shows the simple swift code which is written to do create the file in the document directory of the iPhone. It uses Xcode environment to develop and simulate the App in the in-built simulator. It…
How to create and delete a file programmatically from your Android App?
In this video it shows how to create and delete a file in your phone’s file system from your Android App. It uses a sample file ABC.pdf for this demo. In this App 2 buttons are created, one for creating the file and another for deleting the file. It uses…