File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed
Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 15181518 "blank" : true ,
15191519 "extensions" : [" rst" ]
15201520 },
1521+ "Robot Framework" : {
1522+ "line_comment" : [" #" ],
1523+ "important_syntax" : [" ***" ],
1524+ "extensions" : [" robot" , " resource" ]
1525+ },
15211526 "Roc" : {
15221527 "line_comment" : [" #" ],
15231528 "quotes" : [
Original file line number Diff line number Diff line change 1+ # 11 lines 7 code 2 comments 2 blanks
2+ *** Settings ***
3+ Library SeleniumLibrary
4+
5+ *** Variables ***
6+ # Setting firefox as browser
7+ ${BROWSER } Firefox
8+
9+ *** Keywords ***
10+ Go To Github Repo
11+ Open Browser https://github.com/XAMPPRocky/tokei ${BROWSER }
Original file line number Diff line number Diff line change 1+ # 12 lines 9 code 1 comments 2 blanks
2+ *** Settings ***
3+ Resource robot.resource
4+
5+ *** Variables ***
6+ ${TAB TEXT } "Pull requests"
7+
8+ *** Test Cases ***
9+ Go To Pull Requests
10+ Wait Until Element Is Visible xpath=//a[contains(text(), "${TAB TEXT } ")]
11+ Click Element xpath=//a[contains(text(), "${TAB TEXT } ")]
12+ Wait Until Element Is Visisble xpath=//span[text() = "New pull request"]
You can’t perform that action at this time.
0 commit comments