Can we run selenium tests Firefox on WebDriver without a GUI

0 votes
We are planning to upgrade our prod server from Ubuntu-desktop 10.04 to Ubuntu-server 12.04. There are various services running on our current desktop OS such as Selenium WebDriver. My doubt is, can WebDriver be run from a cli-based system?

My gut feeling is that it can't, as it relies on a GUI. Am I right or wrong?
Mar 23, 2018 in Selenium by Shubham
• 13,490 points

retagged Mar 23, 2018 by Shubham 3,572 views

3 answers to this question.

0 votes

You can explore options like HTMLUnit Driver or Ghost Driver. HTMLUnit Driver works for testing on web servers where there is no question of a GUI. This is what you might be interested in. 

If this does not work, you can also check how Ghost Driver or PhanthomJS Driver work. I have not tried them personally, but I've heard they do something similar.

answered Mar 23, 2018 by nsv999
• 5,500 points
0 votes

Hi Shubham, you can use headless browsers like Headless chrome browser using these lines of code;

System.setProperty("webdriver.chrome.driver","ChromeDriverPath");
ChromeOptions options = new ChromeOptions();
options.addArguments("headless");
WebDriver driver = new ChromeDriver(options);
driver.get("https://www.google.co.in/");
System.out.println("title is: " + driver.getTitle());
answered Aug 23, 2019 by Abha
• 28,140 points
0 votes
Hi ,

 Yes, you can use headless browsers . Electron is one of the headless browser.
answered Sep 2, 2020 by Sri
• 3,190 points

Related Questions In Selenium

0 votes
1 answer

How to run selenium (Firefox) web driver without a GUI?

Yes, it's possible to run Selenium on ...READ MORE

answered Nov 27, 2020 in Selenium by Gitika
• 65,910 points
745 views
0 votes
2 answers

When executing my Jenkins tests with Selenium WebDriver, I do not see a GUI.

Hi eLiJha, I also faced the same issue ...READ MORE

answered Jul 15, 2019 in Selenium by nayan
• 160 points
12,426 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,712 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,608 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,680 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,551 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP