Skip to content

Commit 66812f7

Browse files
Abizer Singaporewalafrancisf
authored andcommitted
EOF fixes
1 parent d2e6dca commit 66812f7

File tree

11 files changed

+17
-11
lines changed

11 files changed

+17
-11
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ log.html
66
pabot_results/
77
.pabotsuitenames
88
.DS_Store
9-
*.png
9+
*.png

config/KeywordsFile.robot

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ Verify site content
5353
${site_content}= get text css=body
5454
run keyword if "${site_content}" == "Up and running" mark test status passed Site Content validated!
5555
run keyword if "${site_content}" != "Up and running" mark test status failed Site Content validation failed!
56-
element should contain css=body Up and running
56+
element should contain css=body Up and running
57+

config/LocalCaps.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
*** Variables ***
2-
&{LOCAL_CAPS} name=local test build=browserstack-robot-framework browser=Edge browser_version=latest os=Windows os_version=10 browserstack.local=true
2+
&{LOCAL_CAPS} name=local test build=browserstack-robot-framework browser=Edge browser_version=latest os=Windows os_version=10 browserstack.local=true

config/ParallelCaps.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*** Variables ***
22
&{PARALLEL_CAPS_1} name=parallel test build=browserstack-robot-framework browser=Chrome browser_version=latest os=Windows os_version=10
33
&{PARALLEL_CAPS_2} name=parallel test build=browserstack-robot-framework browser=Safari browser_version=latest os=OS X os_version=Big Sur
4-
&{PARALLEL_CAPS_3} name=parallel test build=browserstack-robot-framework device=Samsung Galaxy S22 os_version=12 real_mobile=true
4+
&{PARALLEL_CAPS_3} name=parallel test build=browserstack-robot-framework device=Samsung Galaxy S22 os_version=12 real_mobile=true

config/SingleCaps.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
*** Variables ***
2-
&{SINGLE_CAPS} name=single test build=browserstack-robot-framework browser=Edge browser_version=latest os=Windows os_version=10
2+
&{SINGLE_CAPS} name=single test build=browserstack-robot-framework browser=Edge browser_version=latest os=Windows os_version=10

config/manage-local-testing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ def startLocal():
1616

1717
@keyword("STOP LOCAL")
1818
def stopLocal():
19-
bs_local.stop()
19+
bs_local.stop()
20+

config/mark-test-status.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
@keyword("TEST STATUS")
77
def testStatus(status, reason):
88
driver = BuiltIn().get_library_instance('SeleniumLibrary').driver
9-
driver.execute_script('browserstack_executor: {"action": "setSessionStatus", "arguments": {"status":"'+status+'", "reason": "'+reason+'"}}')
9+
driver.execute_script('browserstack_executor: {"action": "setSessionStatus", "arguments": {"status":"'+status+'", "reason": "'+reason+'"}}')
10+

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ robotframework
22
robotframework-seleniumlibrary==5.1.3
33
robotframework-pabot
44
browserstack-local
5-
selenium==3.141.0
5+
selenium==3.141.0

tests/SingleTest.robot

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ Bstack Website Login
1414
Click on Sign In
1515
Enter Credentials demouser testingisfun99
1616
Click on Login
17-
Verify username demouser
17+
Verify username demouser
18+

tests/parallel/Suite01.robot

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ Favuser test
1717
Favuser
1818

1919
Image not loading user test
20-
Image not loading user
20+
Image not loading user
21+

0 commit comments

Comments
 (0)