I tried to connect to Oracle Database through Robot framework, i am getting error.
In Database Library documention given the syntax as below:
# explicitly specifies all db property values
Connect To Database psycopg2 my_db postgres s3cr3t tiger.foobar.com 5432
I used the same in my code as below:
*** Settings ***
Documentation Trouble Ticket Test Cases
Library Selenium2Library
Library DatabaseLibrary
*** Test Cases ***
Connect To Database
*** Keywords ***
Connect To Database
Connect To Database cx_Oracle MTNIODC48 ABL_DBOBJECTS abill_2808_prod 172.20.22.48 1521
I ran and got the below error: Keyword 'DatabaseLibrary.Connect To Database' expected 4 arguments, got 6.
Can anyone please help on this.
Thanks Sarada