Skip to content

Commit 6f411a2

Browse files
committed
Use "CTRL+C" instead of "CTRL-C" in console messages
1 parent 00ef684 commit 6f411a2

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

examples/example_logs/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pytest --dashboard --rs --headless
3737
python -m http.server 1948
3838
```
3939

40-
🔵 Now you can navigate to ``http://localhost:1948/dashboard.html`` in order to view the dashboard as a web app. This requires two different terminal windows: one for running the server, and another for running the tests, which should be run from the same directory. (Use ``CTRL-C`` to stop the http server.)
40+
🔵 Now you can navigate to ``http://localhost:1948/dashboard.html`` in order to view the dashboard as a web app. This requires two different terminal windows: one for running the server, and another for running the tests, which should be run from the same directory. (Use ``CTRL+C`` to stop the http server.)
4141

4242
🔵 Here's a full example of what the SeleniumBase Dashboard may look like:
4343

help_docs/customizing_test_runs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ pytest --dashboard --rs --headless
280280
python -m http.server 1948
281281
```
282282

283-
🔵 Now you can navigate to ``http://localhost:1948/dashboard.html`` in order to view the dashboard as a web app. This requires two different terminal windows: one for running the server, and another for running the tests, which should be run from the same directory. (Use ``CTRL-C`` to stop the http server.)
283+
🔵 Now you can navigate to ``http://localhost:1948/dashboard.html`` in order to view the dashboard as a web app. This requires two different terminal windows: one for running the server, and another for running the tests, which should be run from the same directory. (Use ``CTRL+C`` to stop the http server.)
284284

285285
🔵 Here's a full example of what the SeleniumBase Dashboard may look like:
286286

integrations/brython/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
```bash
1111
python -m http.server
1212
```
13-
You can always stop the server by using ``CTRL-C``.
13+
You can always stop the server by using ``CTRL+C``.
1414

1515
### 2. Navigate to [http://localhost:8000/](http://localhost:8000/)
1616

integrations/node_js/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Creating a Test Runner with NodeJS + Express</h2>
1+
<h2><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32" /> Creating a Test Runner with NodeJS + Express</h2>
22

33
You can create a customized web app for running SeleniumBase tests by using NodeJS and Express. (This tutorial assumes that you've already installed SeleniumBase by following the instructions from the [top-level ReadMe](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md) file.)
44

@@ -29,7 +29,7 @@ npm install
2929
node server.js
3030
```
3131

32-
(You can always stop the server by using ``CTRL-C``.)
32+
(You can always stop the server by using ``CTRL+C``.)
3333

3434
#### 5. Open the SeleniumBase Test Runner web app
3535

integrations/node_js/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const express = require('express');
33
const path = require('path');
44
const app = express();
55
const exec = require('child_process').exec;
6-
var server_info = '\nServer running at http://127.0.0.1:3000/ (CTRL-C to stop)';
6+
var server_info = '\nServer running at http://127.0.0.1:3000/ (CTRL+C to stop)';
77

88
function run_command(command) {
99
console.log("\n" + command);

seleniumbase/common/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Often in your tests, you may need to login to a website to perform testing. This
4040
```bash
4141
python obfuscate.py
4242

43-
Enter password to obfuscate: (CTRL-C to exit)
43+
Enter password to obfuscate: (CTRL+C to exit)
4444
Password: *********
4545
Verify password:
4646
Password: *********

seleniumbase/common/obfuscate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def main():
1616
try:
1717
while(1):
18-
print("\nEnter password to obfuscate: (CTRL-C to exit)")
18+
print("\nEnter password to obfuscate: (CTRL+C to exit)")
1919
password = getpass.getpass()
2020
print("Verify password:")
2121
verify_password = getpass.getpass()

seleniumbase/common/unobfuscate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def main():
2222
try:
2323
while(1):
2424
code = input_method(
25-
'\nEnter obfuscated/encrypted string: (CTRL-C to exit):\n')
25+
'\nEnter obfuscated/encrypted string: (CTRL+C to exit):\n')
2626
print("\nHere is the unobfuscated string/password:")
2727
time.sleep(0.07)
2828
print(encryption.decrypt(code))

seleniumbase/utilities/selenium_grid/grid_hub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def main():
106106
subprocess.check_call(shell_command, shell=True)
107107
elif grid_hub_command == "stop":
108108
print("")
109-
print("To stop the Grid Hub, use CTRL-C inside the server shell!")
109+
print("To stop the Grid Hub, use CTRL+C inside the server shell!")
110110
print("")
111111
else:
112112
invalid_run_command()

seleniumbase/utilities/selenium_grid/grid_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def main():
125125
subprocess.check_call(shell_command, shell=True)
126126
elif grid_hub_command == "stop":
127127
print("")
128-
print("To stop the Grid node, use CTRL-C inside the server shell!")
128+
print("To stop the Grid node, use CTRL+C inside the server shell!")
129129
print("")
130130
else:
131131
invalid_run_command()

0 commit comments

Comments
 (0)