Skip to content

Releases: seleniumbase/SeleniumBase

Fix pypi readme by setting content type to markdown

28 Aug 02:45
8d842be
Compare
Choose a tag to compare

Adding ability for parameterized tests

28 Aug 02:30
23d3012
Compare
Choose a tag to compare

Adding ability for parameterized tests

Example:

from seleniumbase import BaseCase
from parameterized import parameterized


class GoogleTestClass(BaseCase):

    @parameterized.expand([
        ["pypi", "https://pypi.org"],
        ["wikipedia", "https://www.wikipedia.org"],
        ["seleniumbase", "https://github.com/seleniumbase/SeleniumBase"],
    ])
    def test_parameterized_google_search(self, search_term, expected_url):
        self.open('https://google.com')
        self.update_text('input[title="Search"]', search_term + '\n')
        self.assert_text(expected_url, '#search')

Add the ability to create Bootstrap Tours

27 Aug 22:54
0bc0cfc
Compare
Choose a tag to compare
  • Add the ability to create Bootstrap Tours
  • Update versions of pytest and pytest-xdist

Upgrade selenium and more

21 Aug 22:33
dfe32b6
Compare
Choose a tag to compare

Upgrade to the latest version of selenium: 3.14.0
Upgrade to the latest version of pytest: 3.7.2
Upgrade to the latest version of pytest-xdist: 1.22.5
Improve reliability during website walkthroughs
Update ad-block list
Add new methods for website-traffic-generation

Fix a bug and add a new method.

19 Aug 19:11
22fdaec
Compare
Choose a tag to compare
  • Fix a bug with website tours.
  • Add save_data_as() method.

Set Chrome window default sizing

18 Aug 00:41
f21be3a
Compare
Choose a tag to compare

Set Chrome window default sizing

Update the Selenium IDE script-converter tool

16 Aug 00:11
5389c3b
Compare
Choose a tag to compare

Update the Selenium IDE script-converter tool

Internet Explorer optimization

15 Aug 09:18
dd7152d
Compare
Choose a tag to compare

Internet Explorer optimization (because people are still using that browser, surprisingly)

Fix compatibility with IE Browser

15 Aug 02:12
a0adefd
Compare
Choose a tag to compare

Fix compatibility with IE Browser

Make seleniumbase become the only top-level Python package

14 Aug 06:11
d558b9a
Compare
Choose a tag to compare

Make seleniumbase become the only top-level Python package by making all other packages part of the seleniumbase package.

This means:

  • "selenium_grid" moves to seleniumbase/utilities
  • "selenium_ide" moves to seleniumbase/utilities
  • "console_scripts" moves to seleniumbase/console_scripts
  • "drivers" moves to seleniumbase/drivers