Skip to content

Commit 8e546f6

Browse files
committed
Update links from mdmintz to seleniumbase
1 parent 71cc643 commit 8e546f6

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

examples/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ To makes things easier, here's a simple GUI program that allows you to kick off
88
python gui_test_runner.py
99
```
1010

11-
(NOTE: With the exception of [my_first_test.py](https://github.com/mdmintz/SeleniumBase/blob/master/examples/my_first_test.py), which should pass, many other tests in this folder fail on purpose to demonstrate features such as screenshots on failure, exception logging, and test reports.)
11+
(NOTE: With the exception of [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py), which should pass, many other tests in this folder fail on purpose to demonstrate features such as screenshots on failure, exception logging, and test reports.)
1212

1313
![](http://cdn2.hubspot.net/hubfs/100006/images/GUI_Test_Runner_3.png "GUI Test Runner")
1414

15-
If you run scripts with logging enabled, (using ``--with-testing_base``), you’ll see two folders appear: “latest_logs” and “archived_logs”. The “latest_logs” folder will contain log files from the most recent test run, but logs will only be created if the test run is failing. Afterwards, logs from the “latest_logs” folder will get pushed to the “archived_logs” folder if you have have the ``ARCHIVE_EXISTING_LOGS`` feature enabled in [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py). Make sure to run ``python setup.py install`` for your changes to take effect if you make any changes to that file.
15+
If you run scripts with logging enabled, (using ``--with-testing_base``), you’ll see two folders appear: “latest_logs” and “archived_logs”. The “latest_logs” folder will contain log files from the most recent test run, but logs will only be created if the test run is failing. Afterwards, logs from the “latest_logs” folder will get pushed to the “archived_logs” folder if you have have the ``ARCHIVE_EXISTING_LOGS`` feature enabled in [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py). Make sure to run ``python setup.py install`` for your changes to take effect if you make any changes to that file.
1616

1717
**For running scripts the usual way, here are some of the example run commands:**
1818
(Note: You can replace ``nosetests`` with ``py.test`` for most of these.)

help_docs/method_summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### SeleniumBase method summary
22

3-
Here's a summary of SeleniumBase method definitions, which are defined in [base_case.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py)
3+
Here's a summary of SeleniumBase method definitions, which are defined in [base_case.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py)
44

55
In order to maintain backwards compatibility with scripts using earlier verions of SeleniumBase, some methods that had their names shortened can also be called by their original method name. *(Ex: wait_for_element_visible was later shortened to wait_for_element and then to find_element, but the longer method names remained to keep older scripts from failing.)*
66

help_docs/mysql_installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you want a visual tool to help make your MySQL life easier, [try MySQL Workbe
2121

2222
#### Prepare your MySQL DB
2323

24-
You can use the [testcaserepository.sql](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/core/testcaserepository.sql) file to create the necessary tables for storing test data.
24+
You can use the [testcaserepository.sql](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/core/testcaserepository.sql) file to create the necessary tables for storing test data.
2525

2626
If you were able to successfully install MySQL, you can now install the remaining MySQL requirements:
2727
```bash
@@ -30,7 +30,7 @@ pip install -r server_requirements.txt
3030

3131
#### Configure your MySQL DB for SeleniumBase
3232

33-
You'll want to update your [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py) file with your MySQL DB credentials so that tests can write to the database when they run.
33+
You'll want to update your [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py) file with your MySQL DB credentials so that tests can write to the database when they run.
3434

3535
#### Allow tests to write to your MySQL database
3636

integrations/google_cloud/ReadMe.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
```bash
2323
cd /
24-
sudo git clone https://github.com/mdmintz/SeleniumBase.git
24+
sudo git clone https://github.com/seleniumbase/SeleniumBase.git
2525
```
2626

2727
#### 5. Enter the "linux" folder
@@ -99,7 +99,7 @@ nosetests examples/my_first_test.py --with-selenium --headless --browser=firefox
9999
#### 17. Setup your new Jenkins job
100100

101101
* Under "Source Code Management", select "Git".
102-
* For the "Repository URL", put: ``https://github.com/mdmintz/SeleniumBase.git``. (You'll eventually be using your own clone of the repository here.)
102+
* For the "Repository URL", put: ``https://github.com/seleniumbase/SeleniumBase.git``. (You'll eventually be using your own clone of the repository here.)
103103
* Under "Build", click the "Add build step" dropdown and then select "Execute shell".
104104
* For the "Command", put:
105105
```bash
@@ -150,11 +150,11 @@ If you have a web application that you want to test, you'll be able to create Se
150150

151151
#### 25. Create the necessary tables in your MySQL schema
152152

153-
* Run a SQL script in your MySQL schema using [testcaserepository.sql](https://raw.githubusercontent.com/mdmintz/SeleniumBase/master/seleniumbase/core/testcaserepository.sql)
153+
* Run a SQL script in your MySQL schema using [testcaserepository.sql](https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/core/testcaserepository.sql)
154154

155155
#### 26. Have your local clone of SeleniumBase connect to your MySQL DB
156156

157-
* Update the MySQL connection details in your [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py) file to use the credentials that you saved in Step 21.
157+
* Update the MySQL connection details in your [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py) file to use the credentials that you saved in Step 21.
158158
* Run the following command again from the top-level SeleniumBase folder to make sure that SeleniumBase uses the updated credentials:
159159

160160
```bash

integrations/linux/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Running SeleniumBase on Debian GNU/Linux
22

3-
The files in this folder are currently used with the [Google Cloud setup instructions for SeleniumBase](https://github.com/mdmintz/SeleniumBase/blob/master/integrations/google_cloud/ReadMe.md). You can also use these files standalone with any Debian GNU/Linux machine.
3+
The files in this folder are currently used with the [Google Cloud setup instructions for SeleniumBase](https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/google_cloud/ReadMe.md). You can also use these files standalone with any Debian GNU/Linux machine.

integrations/node_js/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Creating a SeleniumBase Test Launcher using NodeJS
22

3-
Great news: It's really easy to create a customized web app for kicking off SeleniumBase jobs using NodeJS. This tutorial will walk you through all the steps that you need. (I'll assume that you've already installed SeleniumBase by following the instructions from the [top-level ReadMe](https://github.com/mdmintz/SeleniumBase/blob/master/README.md) file.)
3+
Great news: It's really easy to create a customized web app for kicking off SeleniumBase jobs using NodeJS. This tutorial will walk you through all the steps that you need. (I'll assume 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

55
#### 1. Install NodeJS
66

integrations/selenium_grid/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Notes on using the Selenium Grid Hub
22

3-
The Selenium Grid Hub allows you to distribute tests to run in parallel across multiple machines. Each machine can then run its own allocation of tests in parallel. This allows you to run an entire test suite quickly, which may be important if you have a lot of tests to run. Machines can be personal computers, data centers, or virtual machines in the cloud. You can also create your own virtual machine by using a tool such as Docker (see the [Docker ReadMe](https://github.com/mdmintz/SeleniumBase/blob/master/integrations/docker/ReadMe.md)).
3+
The Selenium Grid Hub allows you to distribute tests to run in parallel across multiple machines. Each machine can then run its own allocation of tests in parallel. This allows you to run an entire test suite quickly, which may be important if you have a lot of tests to run. Machines can be personal computers, data centers, or virtual machines in the cloud. You can also create your own virtual machine by using a tool such as Docker (see the [Docker ReadMe](https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/docker/ReadMe.md)).
44

55
### Running the Selenium Grid Hub
66

seleniumbase/core/style_sheet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<title>Test Report</title>
33
<link rel="SHORTCUT ICON"
44
href="%s" /> ''' % (
5-
"https://raw.githubusercontent.com/mdmintz/SeleniumBase"
5+
"https://raw.githubusercontent.com/seleniumbase/SeleniumBase"
66
"/master/seleniumbase/resources/favicon.ico")
77

88
style = title + '''<style type="text/css">

seleniumbase/resources/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
If you want to run SeleniumBase automation on local web pages while offline, that's possible if you copy the resource files here to a location where your local web server is able to access those files as long as you make the necessary updates to your local copy of SeleniumBase. You might not even need to use them depending on what you're doing.
44

5-
**jquery-2.2.4.min.js** - This file is used by [base_case.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) in activate_jquery(). The activate_jquery() method uses the version at [http://code.jquery.com/jquery-2.2.4.min.js](http://code.jquery.com/jquery-2.2.4.min.js). You only need this file if you're making jQuery calls in your automation (some base_case methods use jQuery).
5+
**jquery-2.2.4.min.js** - This file is used by [base_case.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) in activate_jquery(). The activate_jquery() method uses the version at [http://code.jquery.com/jquery-2.2.4.min.js](http://code.jquery.com/jquery-2.2.4.min.js). You only need this file if you're making jQuery calls in your automation (some base_case methods use jQuery).
66

7-
**favicon.ico** - This file is used by [style_sheet.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/core/style_sheet.py) for the favicon icon. All it does is make the report page a little more professional-looking. Currently, SeleniumBase uses the version at [https://raw.githubusercontent.com/mdmintz/SeleniumBase/master/seleniumbase/resources/favicon.ico](https://raw.githubusercontent.com/mdmintz/SeleniumBase/master/seleniumbase/resources/favicon.ico).
7+
**favicon.ico** - This file is used by [style_sheet.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/core/style_sheet.py) for the favicon icon. All it does is make the report page a little more professional-looking. Currently, SeleniumBase uses the version at [https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/resources/favicon.ico](https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/resources/favicon.ico).

0 commit comments

Comments
 (0)