In this video will see how to check if correct page is loaded or not. In order to do that will get the title of the page and perform a check. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email…
Tag: get
How to get the count of any webElement on webpage in Selenium?
In this video will see how to count any specific type of webElements (e.g no. of hyperlinks, input boxes, images etc). In other words we can get how many times any webelement occurred on any given point of time. We will also see how to print the text of webelements….
How to download a file from FTP server in your Android App?
In this video it shows the code to download a JPG file from FTP server and then display it over an ImageView in your Android App. It uses following dependency in the code:https://mvnrepository.com/artifact/commons-net/commons-net/3.10.0 I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
How to integrate Google’s generative AI PaLM API with cURL using JSON RestAPI POST in your Android App?
This video shows the steps to integrate Google’s Generative AI’s PaLM API from MakerSuite in your Android App. It uses the cURL command to integrate it. 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…
How to download an image file from AWS S3 using signed URL in your Android App?
In this video it shows the steps for downloading an image file from AWS (Amazon Web Services) S3 (Amazon Simple Storage Service) in your Android App. It uses the signed URL of the file which is valid for a limited period (max 12 hours). In this demo the signed URL…
How to build a simple video streaming Android TV App using WebView in Android Studio?
In this video it shows the steps to build a very simple video streaming Android TV App using WebView. It uses a sample video hosted on my website: programmerworld.co for the demonstration purpose. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
Difference between List vs Set in Java code of your Android App?
As shown in this video, the main difference are: Set: List: 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: With Duplicate entry of “Tokyo” Without any duplicate entry:
How to create Assets directory in your Android Studio environment?
In this video, it shows how to create assets folder in your Android Studio environment. Assets folder can be used to keep assets, such as image files, which can be used in the App development using the getAssets method. I hope you like this video. For any questions, suggestions or…
How to select colors with the Palette API in your Android App?
This video shows the steps to implement the palette library (provided by Android) in your gradle file (App level gradle file). It further shows how one can easily use this API in the Java code to get certain colors from the Image considered in this video for demonstration. This video…