Invalid JSON: Unexpected non-whitespace character after JSON
at line 2, column 1
| {"code":"*** Settings ***\nDocumentation A test suite with a single Gherkin style test.\n...\n... This test is functionally identical to the example in\n... valid_login.robot file.\nResource resource.robot\nTest Teardown Close Browser\n\n*** Test Cases ***\nValid Login\n Given browser is opened to login page\n When user \"demo\" logs in with password \"mode\"\n Then welcome page should be open\n\n*** Keywords ***\nBrowser is opened to login page\n Open browser to login page\n\nUser \"${username}\" logs in with password \"${password}\"\n Input username ${username}\n Input password ${password}\n Submit credentials\n","name":"\/tmp\/repos\/WebDemo\/login_tests\/gherkin_login.robot","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/gherkin_login.robot","element_type":"test","project_name":"robottest","settings":null,"variables":null,"documentation":null} | |
| {"code":"Valid Login\n Given browser is opened to login page\n When user \"demo\" logs in with password \"mode\"\n Then welcome page should be open","name":"Valid Login","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/gherkin_login.robot","element_type":"test_case","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"Browser is opened to login page\n Open browser to login page","name":"Browser is opened to login page","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/gherkin_login.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"User \"${username}\" logs in with password \"${password}\"\n Input username ${username}\n Input password ${password}\n Submit credentials","name":"User \"","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/gherkin_login.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"*** Settings ***\nDocumentation A test suite containing tests related to invalid login.\n...\n... These tests are data-driven by their nature. They use a single\n... keyword, specified with Test Template setting, that is called\n... with different arguments to cover different scenarios.\n...\n... This suite also demonstrates using setups and teardowns in\n... different levels.\nSuite Setup Open Browser To Login Page\nSuite Teardown Close Browser\nTest Setup Go To Login Page\nTest Template Login With Invalid Credentials Should Fail\nResource resource.robot\n\n*** Test Cases *** USER NAME PASSWORD\nInvalid Username invalid ${VALID PASSWORD}\nInvalid Password ${VALID USER} invalid\nInvalid Username And Password invalid whatever\nEmpty Username ${EMPTY} ${VALID PASSWORD}\nEmpty Password ${VALID USER} ${EMPTY}\nEmpty Username And Password ${EMPTY} ${EMPTY}\n\n*** Keywords ***\nLogin With Invalid Credentials Should Fail\n [Arguments] ${username} ${password}\n Input Username ${username}\n Input Password ${password}\n Submit Credentials\n Login Should Have Failed\n\nLogin Should Have Failed\n Location Should Be ${ERROR URL}\n Title Should Be Error Page\n","name":"\/tmp\/repos\/WebDemo\/login_tests\/invalid_login.robot","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/invalid_login.robot","element_type":"test","project_name":"robottest","settings":null,"variables":null,"documentation":null} | |
| {"code":"Login With Invalid Credentials Should Fail\n [Arguments] ${username} ${password}\n Input Username ${username}\n Input Password ${password}\n Submit Credentials\n Login Should Have Failed","name":"Login With Invalid Credentials Should Fail","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/invalid_login.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"Login Should Have Failed\n Location Should Be ${ERROR URL}\n Title Should Be Error Page","name":"Login Should Have Failed","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/invalid_login.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"*** Settings ***\nDocumentation A resource file with reusable keywords and variables.\n...\n... The system specific keywords created here form our own\n... domain specific language. They utilize keywords provided\n... by the imported SeleniumLibrary.\nLibrary SeleniumLibrary\n\n*** Variables ***\n${SERVER} localhost:7272\n${BROWSER} Firefox\n${DELAY} 0\n${VALID USER} demo\n${VALID PASSWORD} mode\n${LOGIN URL} http:\/\/${SERVER}\/\n${WELCOME URL} http:\/\/${SERVER}\/welcome.html\n${ERROR URL} http:\/\/${SERVER}\/error.html\n\n*** Keywords ***\nOpen Browser To Login Page\n Open Browser ${LOGIN URL} ${BROWSER}\n Maximize Browser Window\n Set Selenium Speed ${DELAY}\n Login Page Should Be Open\n\nLogin Page Should Be Open\n Title Should Be Login Page\n\nGo To Login Page\n Go To ${LOGIN URL}\n Login Page Should Be Open\n\nInput Username\n [Arguments] ${username}\n Input Text username_field ${username}\n\nInput Password\n [Arguments] ${password}\n Input Text password_field ${password}\n\nSubmit Credentials\n Click Button login_button\n\nWelcome Page Should Be Open\n Location Should Be ${WELCOME URL}\n Title Should Be Welcome Page\n","name":"\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"resource","project_name":"robottest","settings":null,"variables":null,"documentation":null} | |
| {"code":"Open Browser To Login Page\n Open Browser ${LOGIN URL} ${BROWSER}\n Maximize Browser Window\n Set Selenium Speed ${DELAY}\n Login Page Should Be Open","name":"Open Browser To Login Page","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{'LOGIN URL': {'text': '${LOGIN URL} http:\/\/${SERVER}\/'}, 'BROWSER': {'text': '${BROWSER} Firefox'}, 'DELAY': {'text': '${DELAY} 0'}}","documentation":""} | |
| {"code":"Login Page Should Be Open\n Title Should Be Login Page","name":"Login Page Should Be Open","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"Go To Login Page\n Go To ${LOGIN URL}\n Login Page Should Be Open","name":"Go To Login Page","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{'LOGIN URL': {'text': '${LOGIN URL} http:\/\/${SERVER}\/'}}","documentation":""} | |
| {"code":"Input Username\n [Arguments] ${username}\n Input Text username_field ${username}","name":"Input Username","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"Input Password\n [Arguments] ${password}\n Input Text password_field ${password}","name":"Input Password","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"Submit Credentials\n Click Button login_button","name":"Submit Credentials","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |
| {"code":"Welcome Page Should Be Open\n Location Should Be ${WELCOME URL}\n Title Should Be Welcome Page","name":"Welcome Page Should Be Open","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/resource.robot","element_type":"keyword","project_name":"robottest","settings":"{}","variables":"{'WELCOME URL': {'text': '${WELCOME URL} http:\/\/${SERVER}\/welcome.html'}}","documentation":""} | |
| {"code":"*** Settings ***\nDocumentation A test suite with a single test for valid login.\n...\n... This test has a workflow that is created using keywords in\n... the imported resource file.\nResource resource.robot\n\n*** Test Cases ***\nValid Login\n Open Browser To Login Page\n Input Username demo\n Input Password mode\n Submit Credentials\n Welcome Page Should Be Open\n [Teardown] Close Browser\n","name":"\/tmp\/repos\/WebDemo\/login_tests\/valid_login.robot","imports_file_locations":"{}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/valid_login.robot","element_type":"test","project_name":"robottest","settings":null,"variables":null,"documentation":null} | |
| {"code":"Valid Login\n Open Browser To Login Page\n Input Username demo\n Input Password mode\n Submit Credentials\n Welcome Page Should Be Open\n [Teardown] Close Browser","name":"Valid Login","imports_file_locations":"{'resource.robot': 'login_tests\/resource.robot'}","file_location":"https:\/\/scm.cci.nokia.net\/cia\/automation-tests-ncs\/24\/\/tmp\/repos\/WebDemo\/login_tests\/valid_login.robot","element_type":"test_case","project_name":"robottest","settings":"{}","variables":"{}","documentation":""} | |