I'm trying to open Firefox 53 using Robot framework (Ride.py). Unfortunately, It gives me the following error
Demo
===========================================================================================================
Sample Test
| FAIL | SessionNotCreatedException: Message: Unable to find a matching set of capabilitiesDemo
| FAIL | 1 critical test, 0 passed, 1 failed 1 test total, 0 passed, 1 failed===========================================================================================================
My Robot script looks like this
*** Settings ***
Library Selenium2Library
*** Test Case ***
Sample Test
Open Browser
Check Title
[Teardown] Close Browser
*** Keywords ***
Open Browser
open browser https://google.lk Firefox
Maximize Browser Window
Check Title
Title Should Be Google`
Can someone give me an answer? It's working with the chrome driver ( I have added the geckodriver at the same location.
firefox, as described in the documentation - A. Kootstra