Skip to content

Releases: seleniumbase/SeleniumBase

Add seleniumbase command-line interface for console scripts.

25 Jul 06:34
bc822c9
Compare
Choose a tag to compare

Add seleniumbase command-line interface for console scripts.

Usage:
seleniumbase [COMMAND] [PARAMETERS]

Examples:
seleniumbase mkdir [DIRECTORY_NAME]
seleniumbase convert [PYTHON_WEBDRIVER_UNITTEST_FILE].py
seleniumbase grid-hub start
seleniumbase grid-hub stop
seleniumbase grid-node start --hub=127.0.0.1
seleniumbase grid-node stop

Add option to autoplay tour steps

18 Jun 04:03
434d4ed
Compare
Choose a tag to compare

Add option to autoplay steps of SeleniumBase walkthrough tours

Add tour feature

13 Jun 06:43
45a00cf
Compare
Choose a tag to compare

Introducing SeleniumBase Tours, which integrates the HubSpot Shepherd Library into SeleniumBase for making and running tours on any website. (See http://github.hubspot.com/shepherd/docs/welcome/ for Shepherd details.)

Fix MySQL installation for Windows

07 May 17:17
c01d68a
Compare
Choose a tag to compare

Fix MySQL installation for windows. (Mainly removing the direct requirement because of issues installing mysqlclient directly, which mainly broke SeleniumBase completely when installing on Windows machines).

Add Messenger and update versions of Python libraries

07 May 05:30
798f9a9
Compare
Choose a tag to compare

Add ability to display custom messages inside the web browser during tests.
Update versions of pytest, selenium, and ipython.
Load jQuery with https instead of http.

MySQL Deploy Script and updates

17 Apr 07:36
8ca1165
Compare
Choose a tag to compare

For the most part, updating the MySQL functionality and adding MySQL tests inside the deploy script.

Refactor duplicate code into a single method.

09 Apr 00:26
5164319
Compare
Choose a tag to compare

Refactor duplicate code into a single method.
Small change: A had some duplicate code, so I made it into a single method.

Improve JavaScript actions

07 Apr 23:37
2e7e8bc
Compare
Choose a tag to compare

Mostly improving JavaScript actions

Add ad-blocking functionality

06 Apr 03:42
aa741cf
Compare
Choose a tag to compare

Add ad-blocking functionality

Usage:

On the command line:
"pytest SOME_TEST.py --ad_block"
OR
"nosetests SOME_TEST.py --ad_block"

From inside a test:
self.ad_block()

Uses AD_BLOCK_LIST from seleniumbase/config/ad_block_list.py to determine what gets blocked.

Use Python standard library methods when possible

03 Apr 01:42
ce0078a
Compare
Choose a tag to compare

I'm replacing an old method I wrote a long time ago called jq_format() with a Python standard library method that I probably didn't know about then, called re.escape(), which performs the same intended action.