Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
*** Settings ***
Documentation Suite description
Library Selenium2Library
Test Setup Launch browser and open practo.com
Test Teardown Close Browser Session
*** Test Cases ***
Test title
[Tags] DEMO
Given User is able to see practo.come home page
*** Keywords ***
Launch browser and open practo.com
Open Browser about:blank gc
Go to https://www.practo.com
Close Browser Session
Close browser
User is able to see practo.come home page
Page should contain element xpath=//a[text()="Log in/Register"]
"You're either the one that creates the automation or you're getting automated"
How do I automate?
Create page objects and
write selenese actions
Tests/<suite_name>/SampleTest.robot
Keywords/KeywordDefinitions/Home.robot
Keywords/PageKeywords/HomePage.robot
*** Settings ***
Documentation Suite description
Test Setup Launch browser and open practo.com
Test Teardown Close Browser Session
*** Test Cases ***
Test title
[Tags] DEMO
Given User is able to see practo.come home page
*** Settings ***
Resource ../../HomePage.robot
*** Variables ***
*** Keywords ***
Launch browser and open practo.com
HomePage.Launch browser
HomePage.Go to url
Close Browser Session
Close browser
User is able to see practo.come home page
HomePage.Verify element on page
*** Settings ***
Library Selenium2Library
*** Variables ***
${HOME_PAGE_LOGIN_LINK} xpath=//a[text()="Log in/Register"]
*** Keywords ***
Launch browser
Open Browser about:blank gc
Go to url
Go to https://www.practo.com
Verify element on page
Page should contain element ${HOME_PAGE_LOGIN_LINK}
Thank you!
Involves:
How Robot works?
Prepare yourself!
Robot framework is coming..