@rajshah001 this is what I used, although I’m no longer using Travis (using GH Actions) so I don’t know for sure it still works reliably.
if [[ $TRAVIS_OS_NAME == "windows" ]]; then
echo Installing Google Chrome Stable...
# Install Chrome via Chocolatey while `addons: chrome` doesn't seem to work on Windows yet
# https://travis-ci.community/t/installing-google-chrome-stable-but-i-cant-find-it-anywhere/2118
choco install googlechrome --acceptlicense --yes --no-progress --ignore-checksums
fi