robotframework-style-guide
robotframework-style-guide copied to clipboard
Robot Framework Style Guide
As a reader I would like to know why a certain rule is being put forward so I can understand and reason with others about the choices we make on...
Update examples and their styled format in tabs. https://github.com/MarketSquare/robotframework-style-guide/assets/30650086/609c678f-d589-4d88-8cda-d89f356bc14a
Build from the existing Guide and flush out details https://docs.robotframework.org/docs/examples/project_structure
Will you also touch topics like the Evaluation Namespace, e.g. in IF conditions? e.g. When to use '${x}' == 'expected' or $x == 'expected'
How to style out Template TestCases like this: ```robot *** Test Cases *** USERNAME PASSWORD Invalid User Name [Tags] foo invalid ${VALID PASSWORD} Invalid Password [Documentation] foo [Tags] bar ${VALID...
We should create a consistent top to bottom approach for the content based on scope. Make it easy to find information- "I am trying to find out about Spacing rules...
Rules to describe: - How many until new line? - Run Keywords command and how many AND statements - Passing in Keywords into Variables: ```robot ${kw_var} Set Variable Log To...
Rules to describe: - Max. number of lines in a file (this is not only for suite files) - Max. number of TCs in a file (except for when written...
Rules to describe: - Max. number of KW calls in a test - review rules in Robocop and robotidy - Naming test cases to be readable in logs- longer or...
- File length - number of keywords in keyword section - number of variables in variables - number of resource/library/variables in settings - blank line at end of file -...