Category: Others (Technical)
How to create Bootstrap Carousel?
Learn How to create Bootstrap Carousel The carousel is a slideshow for cycling through a series of content. It is also known as image slider. It also includes support for next and previous controls. Now, let’s see how to create
PostgreSQL – Server doesn’t listen error
How to fix PostgreSQL server doesn’t listen error While trying to connect to Postgress you may face this error – Server doesn’t listen. Error: This is not an error exactly but an exception that occurs when we are running two
How to get Lat, Long in React Native app
Steps to access GPS in React Native app to capture lat/long In your AndroidManifest.xml add following permissions: <uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION” /> it comes enabled by default on iOS but not Android. There are three methods available for geolocation: getCurrentPosition allows us
Tableau development environment setup alternatives
Tableau development environment setup alternatives with and without Data Migration from Development to Production Development, Test, QA and PRODUCTION – With Data Migration Description: Common names for environments for Tableau development are development, test/QA, staging/pre-production, and production. There are typically
Introduction to Firefox Gecko Driver for Selenium
Introduction to Firefox Gecko Driver for Selenium Firefox gecko driver is used to perform the automation testing in Firefox browser. For selenium 3 you need to download the gecko driver to run the scripts in Firefox browser. Mozilla has released
How to apply text style on bullets/number list in CKEditor
How to apply text style on bullets/number list in CKEditor CKEditor is a rich text editor used for writing content in online applications. It has features found in desktop word processors such as styles formatting (bold, italic, underline, bulleted and
Selenium-Grid using Command Prompt with examples
Selenium-Grid using Command Prompt with examples Selenium grid system is a part of the selenium suite which allows the user to run multiple test cases simultaneously across different browsers, operating systems, and machines. To implement the selenium grid, we need
Regression Testing Example with Selenium
Regression Testing Example With Selenium Regression testing is a process to verify that code changes in the product do not impact the existing functionality of the product. In simple words, regression testing is performed to re-execute test cases in order
Install TestNG framework in Eclipse for Selenium Webdriver?
How to install TestNG framework in Eclipse for Selenium Webdriver? TestNG is an automation testing framework in which NG stands for “Next Generation”. By using TestNG we can automate the test cases with the help of annotations. Steps to follow