In this video will see how to work with selenium using MAVEN. In few steps only selenium maven project can be created. 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 Steps: Excerpt: In this video, you will…
Tag: id
How to get client ID and client secrets (private key) for Google account?
The video shares the process of obtaining client ID and client secrets (private key) for a Google account. For further inquiries or feedback, reach out at https://programmerworld.co/contact/ or email programmerworld1990@gmail.com. Screenshots of the steps are also included.
How to access the HDMI Passthrough input in TvView of your Android TV App?
In this video it shows the steps to access the HDMI Passthrough input in your Android TV App. It shows the inputs whatever is passed through the HDMI cable in the TvView widget of your TV App. I hope you like this video. For any questions, suggestions or appreciation please…
How to get the list of input IDs (of available channels) in your Android TV App? – Complete source code
The video demonstrates how to retrieve a list of input IDs from the channels on your Android TV using the TvInputInfo object from the TvInputManager class. In addition, the TvInputInfo object can retrieve package and service info. The source code for accomplishing all these is shared, showing how to import the necessary classes and specify a MainActivity. The video also highlights that the Input IDs vary based on the TV brand and model number. Any inquiries, suggestions, or appreciation can be addressed via the posted contact details.
How to implement Google SignIn OAuth2 authentication (client ID) in your App? – Android Studio Java | API34 | Android 14
The content presents a tutorial video on how to implement OAuth2 authentication in Android apps. It primarily focuses on creating a new project in Google Cloud Platform, setting up OAuth 2.0 credentials, and utilizing the generated client IDs in the code. The tutorial emphasizes that both web client and Android application type credentials should be established, but only the web application type client ID should be used for authentication purposes. Complete source code for the app is provided. The video can be accessed via a link, and further queries are to be directed to the presented contact details.
How to live stream video from camera using the new createCaptureSession API in your Android App? – API 34
In this video it shows the steps to create live streaming video from the phone’s camera on the Texture View widget of your Android App. It uses the new CameraDevice.createCaptureSession(sessionConfiguration) API. The previous versions of this API are deprecated from API version 30 onwards. I hope you like this video….
How to take CSS Selector/Xpath using regular expression in Selenium?
In this video will see how to take CSS Selector/Xpath using regular expression in Selenium. We need to take regular expression when attribute values are so long or partially change every time. In that case we need to do unique partial match for values with the help of regular expressions….
How to write xpath in Selenium when properties has no unique values?
In this video will see how to take xpath in selenium when there are no unique values are present any element or attribute values are dynamic (changing on every page load). I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email…
How to add/ save a new contact in phone directly from your App? – Android Studio code
In this video it shows how to save the contacts directly from your Android App programmatically. It uses ContentProviderOperation to structure the input and then insert it in the phone’s content as a new contact. I hope you like this video. For any questions, suggestions or appreciation please contact us…
How to get SSID of the Wifi using WifiManager.getConnectionInfo API in your Android App? – For SDK 29 (Android 10)
This video shows the code to get SSID of the wifi in your Android App using the WifiManager.getConnectionInfo API. 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: package com.programmerworld.getssidofwifi;import androidx.appcompat.app.AppCompatActivity;import androidx.core.app.ActivityCompat;import android.Manifest;import android.content.pm.PackageManager;import android.net.wifi.SupplicantState;import…