0% found this document useful (0 votes)
99 views1 page

Automation Notes

The document provides instructions for running test cases using the robot framework. It includes commands for running individual test cases from specific files and folders, setting an implicit wait in selenium, creating low-level keywords to build page object models, and ensuring test assertions are based on validation messages.

Uploaded by

d 123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
99 views1 page

Automation Notes

The document provides instructions for running test cases using the robot framework. It includes commands for running individual test cases from specific files and folders, setting an implicit wait in selenium, creating low-level keywords to build page object models, and ensuring test assertions are based on validation messages.

Uploaded by

d 123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Command to run test case

robot -d results -t "Verify Sign Up Page Is Displayed" .\Tests\Users_Suite.robot

robot -d results .\Test\loginTest.robot

#robot -d results -t "Test Successful Login" .\loginTest.robot

Test/loginTest.robot

robot -d results -t "Test Successful Login" .\loginTest.robot

robot -d results -t "Test Successful Login" .\Test\loginTest.robot

To run full suite:

robot -d results .\loginTest.robot

robot -d results ./loginTest.robot

set selenium implicit wait

Create low level create words

create PO--low level key words

Keyword--- create high level key words

po--keywords –Tests

keep assertion on test case based on validation message

You might also like