python - How to use Chromium in selenium2library with Open Browser? -


I test for a website using robotframework and selenium2library . My test works well with Firefox However, I would like to use chromium instead According to this, it should work for Chrome. But on my Ubuntu machine I can not use the box from that browser.

Here's a minimum example:

  *** Settings *** Library Selenium Library *** Test case *** Open browser and open about the check title Browser: The empty chromium title should be $ {EMPTY}  

This failed with the following error:

  Value error: Chromium is not a supported browser  Selenium2library  

What is a way to set up Chromium for use with

< P> The problem is that "Chromium" is not a name that is known about Selenium Library. You can not use any name Use "chrome" instead of "chromium", and make sure your path is installed in some folders - it is not installed by default.


Comments