In this video will see how to overcome the problem of version mismatch between browser driver(e.g chromedriver,firefoxdriver etc) and browsers(e.g chrome,firefox etc.). This we will solve it by using WebDriverManager Class in our maven project. If you are not using maven project you can add the jar file of WebDriverManager …
Tag: build
How to resolve error (red color marked on project name) in eclipse for any project (selenium or java)?
In this video will see how to resolve red color marked error on any project written in eclipse it can be selenium (webdriver,testNG,maven) or java. 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 Screenshot: Excerpt: In the…
How to add external jar file in selenium project/How to configure or import jar file for eclipse project?
In this video will see how to add/configure/import external jar files in selenium webdriver or any java eclipse project. Steps: Right click on project->Build Path->Configure Build Path->Libraries->Select ClassPath->Add External JARS->Select Jars to be uploaded->Click Open->Click Apply And Close. I hope you like this video. For any questions, suggestions or appreciation…
How to set the build variant – Debug or Release – in Android Studio? – version Giraffe | 2022.3.1
Set Build Variant:1. Debug2. Release 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 Details: Screenshots: Build APK files at:
How to create Excel file from ListView data and save it in Download directory from your Android app?
This video shows the steps to create an excel file from the ListView data. In this demo it first creates the ListView with some sample string data. Then in the button onClick method, it reads the listView data one by one iteratively and populate the respective cells of an excel…
How to implement van der pol equation in Simulink – R2023a?
In this video it shows step by step approach to implement Van Der Pol Mathematical equation as Simulink Model. This demo can be used to design any mathematical equation as a Simulink model which can be used for simulating the results with various parameter values. The Ven Der Pol equation…
How to create and save an image file in Download folder from your Android App? – Android 13 | API 33
In this video it shows the steps to create and save an image file in the download folder from your Android App. The App is developed in Android Studio for Android 13 – API 33 version. I hope you like this video. For any questions, suggestions or appreciation please contact…
Android Studio – Fix the error “Could not resolve com.android.tools.build:gradle:7.4.0”?
In this video it shows the steps to fix the gradle error in Android studio. Actual issue is with Java version mismatch as explained in the below line of error: To resolve this issue, it changes the Gradle JDK for build in the settings of Android Studio. I hope you…
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 display gif (animated/ moving images) in layout of your Android app?
In this video it shows the steps to implement the animated gif images in your Android App. GIF, Graphics Interchange Format, are short animated images. In this tutorial it uses ‘pl.droidsonroids.gif:android-gif-drawable:1.2.25’ dependency in gradle file. Maven repository for this dependency can be referred at: https://search.maven.org/artifact/pl.droidsonroids.gif/android-gif-drawable/1.2.25/aar I hope you like this…