Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable tabbed browsing, toolbar and address bar in selenium webdriver

enter image description here

I want to driver chrome with web page only.

like image 671
John Milton Avatar asked Dec 19 '25 20:12

John Milton


1 Answers

disable address bar

ChromeOptions options = new ChromeOptions();
options.addArguments("--app=http://www.google.com"); 
driver = new ChromeDriver (options);

check more chrome options here

like image 97
vChen Avatar answered Dec 24 '25 11:12

vChen



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!