Skip to content

Commit 9047313

Browse files
authored
Merge pull request #2 from yuriverweij/bugfix/remove-singular-categories
updated *** Setting/Keyword/Variable *** to *** Settings/Keywords/Var…
2 parents 483e365 + bffa730 commit 9047313

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

atest/acceptance/2-event_firing_webdriver/resource_event_firing_webdriver.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ${DESIRED_CAPABILITIES}= ${NONE}
66
${ROOT}= http://${SERVER}/html
77
${FRONT_PAGE}= ${ROOT}/
88

9-
*** Keyword ***
9+
*** Keywords ***
1010

1111
Go To Page "${relative url}"
1212
[Documentation] Goes to page

atest/acceptance/__init__.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Resource resource.robot
33
Force Tags Regression
44

atest/acceptance/big_list_of_naught_strings.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Resource resource.robot
33
Library BigListOfNaughtyStrings.BigListOfNaughtyStrings WITH NAME blns
44

atest/acceptance/create_webdriver.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Documentation Tests Webdriver
33
Resource resource.robot
44
Library Collections

atest/acceptance/keywords/cookies.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Documentation Tests cookies
33
Suite Setup Go To Page "cookies.html"
44
Suite Teardown Delete All Cookies
@@ -117,7 +117,7 @@ Test Get Cookie Keyword Logging
117117
... extra={'sameSite': 'Lax'}
118118
${cookie} = Get Cookie far_future
119119

120-
*** Keyword ***
120+
*** Keywords ***
121121
Add Cookies
122122
Delete All Cookies
123123
Add Cookie test seleniumlibrary

atest/acceptance/keywords/frames.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Documentation Tests frames
33
Test Setup Go To Page "frames/frameset.html"
44
Test Teardown UnSelect Frame

atest/acceptance/keywords/textfields.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Test Setup Go To Page "forms/prefilled_email_form.html"
33
Resource ../resource.robot
44
Force Tags Known Issue Internet Explorer

atest/acceptance/keywords/textfields_html5.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Test Setup Go To Page "forms/html5_input_types.html"
33
Resource ../resource.robot
44

atest/acceptance/multiple_browsers_multiple_windows.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*** Setting ***
1+
*** Settings ***
22
Documentation These tests must open own browser because windows opened by
33
... earlier tests would otherwise be visible to Get Window XXX keywords
44
... even if those windows were closed.

atest/acceptance/resource.robot

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
*** Setting ***
1+
*** Settings ***
22
Library SeleniumLibrary run_on_failure=Nothing implicit_wait=0.2 seconds
33
Library Collections
44
Library OperatingSystem
55
Library DateTime
66

7-
*** Variable ***
7+
*** Variables ***
88
${SERVER}= localhost:7000
99
${BROWSER}= firefox
1010
${REMOTE_URL}= ${NONE}
@@ -13,7 +13,7 @@ ${ROOT}= http://${SERVER}/html
1313
${FRONT_PAGE}= ${ROOT}/
1414
${SPEED}= 0
1515

16-
*** Keyword ***
16+
*** Keywords ***
1717
Open Browser To Start Page
1818
[Documentation] This keyword also tests 'Set Selenium Speed' and 'Set Selenium Timeout'
1919
... against all reason.

0 commit comments

Comments
 (0)