I want to import library SeleniumLibrary into Robot test file but resulted not found. What could be the error?
I have installed SeleniumLibrary into C:\Python27\Lib\site-packages and set the environment variables. I"m using python 2.7.9
*** Settings ***
Documentation This is a simple test for Robot Framework
Library SeleniumLibrary
#Set Selenium Speed 2 seconds
*** Variables ***
#${homepage} http://www.amazon.com
#${chrome_browser} Chrome
*** Test Cases ***
Test title "Amazon"
[Tags] DEBUG
Open Browser http://www.amazon.com chrome
[Teardown] Close Browser
*** Keywords ***
Please help. Thanks.

pip listdoes the module appear in the returned list of modules. If you have multiple python installations, are you sure you're using the right one? - A. KootstraOpen Browser http://www.amazon.com chrome. Notice it's not saying it can't find a keyword namedOpen Browser. That is a clue that shows you don't have enough spaces between each argument. - Bryan Oakley