This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Library SeleniumLibrary | |
Library ./lib/CustomLib.py | |
Documentation | |
... My First Test | |
... This test will try to Signin with Wrong Email | |
*** Keywords *** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import string | |
__version__ = '1.0.0' | |
class CustomLib(object): | |
ROBOT_LIBRARY_VERSION = __version__ | |
ROBOT_LIBRARY_SCOPE = 'GLOBAL' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Library SeleniumLibrary | |
Documentation | |
... My First Test | |
... This test will try to Signin with Wrong Email | |
*** Keywords *** | |
Navigate To Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Library SeleniumLibrary | |
Documentation | |
... My First Test | |
... This test will Verify Google | |
*** Keywords *** | |
Navigate To Google |