Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated *** Setting/Keyword/Variable *** to *** Settings/Keywords/Variables *** #1885

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading