How to Run Selenium Webdriver Scripts on Brave Browser with ChromeDriver | Brave Browser Automation

Опубликовано: 27 Июль 2026
на канале: Krishna Sakinala (Automation Testing)
6,485
49

Please use the following link to install the Katalon Studio:

https://katalon.com/sign-up?getr=kris... Check Tubebuddy Features Here:
https://www.tubebuddy.com/krishnasaki... In this video will see how to automate #bravebrowser using #selenium. Brave is one of the fastest and safest browser developed using #chromium. So, we can use the chromedriver to automate brave browser. For this we need to use chromedriver which is compatable with brave version.
 
code for mac machine:

WebDriverManager.chromedriver().version("81.0.4044.138").setup();
//System.setProperty("webdriver.chrome.driver", "path of chrome driver 81 (i.e. compatable)version");
ChromeOptions options = new ChromeOptions().setBinary("/Applications/Brave Browser.app/Contents/MacOS/Brave Browser");
WebDriver driver = new ChromeDriver(options);
 
code for windows machine:

WebDriverManager.chromedriver().version("81.0.4044.138").setup();
//System.setProperty("webdriver.chrome.driver", "path of chrome driver 81(i.e. compatable) version");
ChromeOptions options = new ChromeOptions().setBinary("C:\\Program Files (x86)\\BraveSoftware\\Brave-Browser\\Application\\brave.exe"); // this is just example
WebDriver driver = new ChromeDriver(options);

Brave browser official site:
https://brave.com/

chrome driver download site:
https://chromedriver.chromium.org/dow...

link to how to set up maven project in visual studio code:
   • How to setup Maven Project in Visual Studi...  

link to setup selenium project in visual studio code:
   • How to Setup Selenium TestNG Project in Vi...  



Protractor with Javascript - https://bit.ly/2jZ5XkX
Selenium Java Tutorial - https://bit.ly/2keM2Pb
Jasmine Tutorial - https://bit.ly/2lv0m6l
Java - https://bit.ly/2lylSHq
TestNG Tutorial - https://bit.ly/2lTpB2d
PdfUtil - https://bit.ly/2keBDTA
Shutterbug - https://bit.ly/2lX6xQV
Selenium Realtime Examples - https://bit.ly/2k0FqDQ
Java Interview Questions - https://bit.ly/2kopsmY
Katalon Studio - https://bit.ly/2lWhyln
Database Testing - https://bit.ly/2ko4jcJ
Fillo Excel API - https://bit.ly/2jRyWqC
Ashot - https://bit.ly/2kqXk2y
Extent Reports Version 3 Java - https://bit.ly/2k0FweG
Robot class - https://bit.ly/2lshPfJ
Sikuli - https://bit.ly/2lTq2cR
Excel Read Write using Java - https://bit.ly/2lyXRj8
AutoIt - https://bit.ly/2lyIYgM
Extent Reports Version 2 C# - https://bit.ly/2kqIY2d
Extent Reports Version 2 Java - https://bit.ly/2k0XkGA

Facebook :   / automationtesting2016  
LinkedIn : https://www.linkedin.com/feed/?trk=hb...
Google+ : https://plus.google.com/1052863009260...
Twitter :   / krishnasakinala  
Website : http://automationtesting.in/