How to install chrome in Circle CI


To install chrome browser in CircelCi, Paste the below-mentioned commands in circle ci "pre-dependency commands"





Pre-dependency commands

sudo apt-get install libxss1 libappindicator1 libindicator7
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i ./google-chrome*.deb
sudo apt-get install -f

Convert resultset object to list of map

Convert the resultset object to list of map In some cases, while we doing API automation, we need to fetch the value from the DB and hav...