I know RIDE runs the .robot files and converts the txt into the Python robot.api calls. I am trying to see how something in ride converts to how it is called in robot.api
Is there a way to see how Ride uses the Robot.Api calls when running a Test Suite in ride?
Example for clarification:
.Robot file in Ride:
*** Settings ***
Library DateTime
*** Test Case ***
A_Test_Case
Should Be Equal 1 1
Is the same as:
Python Robot.api:
from robot.api import TestSuite
suite = TestSuite(name='Test_Suite')
suite.resource.imports.library('DateTime')
testcase = suite.tests.create('Test_Case')
testcase.keywords.create('Should Be Equal', args=[1, 1])
I need to know if there is a way to see how a .robot file converts to it's python counterpart.