Skip to content

Commit

Permalink
Merge pull request #1885 from yuriverweij/bugfix/remove-singular-cate…
Browse files Browse the repository at this point in the history
…gories

updated *** Setting/Keyword/Variable *** to *** Settings/Keywords/Variables ***
  • Loading branch information
yuriverweij authored Mar 7, 2024
2 parents b067520 + bffa730 commit b125e28
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ${DESIRED_CAPABILITIES}= ${NONE}
${ROOT}= http://${SERVER}/html
${FRONT_PAGE}= ${ROOT}/

*** Keyword ***
*** Keywords ***

Go To Page "${relative url}"
[Documentation] Goes to page
Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/__init__.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Resource resource.robot
Force Tags Regression

Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/big_list_of_naught_strings.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Resource resource.robot
Library BigListOfNaughtyStrings.BigListOfNaughtyStrings WITH NAME blns

Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/create_webdriver.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Documentation Tests Webdriver
Resource resource.robot
Library Collections
Expand Down
4 changes: 2 additions & 2 deletions atest/acceptance/keywords/cookies.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Documentation Tests cookies
Suite Setup Go To Page "cookies.html"
Suite Teardown Delete All Cookies
Expand Down Expand Up @@ -117,7 +117,7 @@ Test Get Cookie Keyword Logging
... extra={'sameSite': 'Lax'}
${cookie} = Get Cookie far_future

*** Keyword ***
*** Keywords ***
Add Cookies
Delete All Cookies
Add Cookie test seleniumlibrary
Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/keywords/frames.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Documentation Tests frames
Test Setup Go To Page "frames/frameset.html"
Test Teardown UnSelect Frame
Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/keywords/textfields.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Test Setup Go To Page "forms/prefilled_email_form.html"
Resource ../resource.robot
Force Tags Known Issue Internet Explorer
Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/keywords/textfields_html5.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Test Setup Go To Page "forms/html5_input_types.html"
Resource ../resource.robot

Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/multiple_browsers_multiple_windows.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Documentation These tests must open own browser because windows opened by
... earlier tests would otherwise be visible to Get Window XXX keywords
... even if those windows were closed.
Expand Down
6 changes: 3 additions & 3 deletions atest/acceptance/resource.robot
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
*** Setting ***
*** Settings ***
Library SeleniumLibrary run_on_failure=Nothing implicit_wait=0.2 seconds
Library Collections
Library OperatingSystem
Library DateTime

*** Variable ***
*** Variables ***
${SERVER}= localhost:7000
${BROWSER}= firefox
${REMOTE_URL}= ${NONE}
Expand All @@ -13,7 +13,7 @@ ${ROOT}= http://${SERVER}/html
${FRONT_PAGE}= ${ROOT}/
${SPEED}= 0

*** Keyword ***
*** Keywords ***
Open Browser To Start Page
[Documentation] This keyword also tests 'Set Selenium Speed' and 'Set Selenium Timeout'
... against all reason.
Expand Down
2 changes: 1 addition & 1 deletion atest/acceptance/windows.robot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*** Setting ***
*** Settings ***
Documentation These tests must open own browser because windows opened by
... earlier tests would otherwise be visible to Get Window XXX keywords
... even if those windows were closed.
Expand Down

0 comments on commit b125e28

Please sign in to comment.