Skip to content

Releases: seleniumbase/SeleniumBase

3.5.7 - Update Default Firefox Preferences

16 Jul 18:51
db5c22b

Choose a tag to compare

Update Default Firefox Preferences

3.5.6 - Handle edge cases after successful actions and refresh dependencies

15 Jul 23:26
5f26c1f

Choose a tag to compare

Handle edge cases after successful actions and refresh dependencies

3.5.5 - Add a debugging option and improve reliability

15 Jul 01:28
eda73c6

Choose a tag to compare

3.5.4 - Handle edge cases with EdgeDriver and js_click()

14 Jul 16:54
e88e06d

Choose a tag to compare

Handle edge cases with EdgeDriver and js_click()

3.5.3 - Reliability updates for Firefox and js_click()

14 Jul 04:42
61e0d89

Choose a tag to compare

3.5.2 - Reduce required Python dependencies

13 Jul 17:59
791eeb0

Choose a tag to compare

3.5.1 - Add a Context Manager method for switching into iframes using a "with" statement

13 Jul 03:00
638dacb

Choose a tag to compare

Add a Context Manager method for switching into iframes using a with statement

Here's an example test that demonstrates this feature:

from seleniumbase import BaseCase

class FrameTests(BaseCase):
    def test_iframes_with_context_manager(self):
        self.open("https://seleniumbase.io/w3schools/iframes.html")
        with self.frame_switch("iframeResult"):
            self.assert_text("HTML Iframes", "h2")
            with self.frame_switch('[title*="Iframe"]'):
                self.assert_text("This page is displayed in an iframe", "h1")
            self.assert_text("Use CSS width & height to specify", "p")
            with self.frame_switch('[title*="Iframe"]'):
                self.assert_text("seleniumbase.io/w3schools/iframes", "a")
        self.click("button#runbtn")
        with self.frame_switch("iframeResult"):
            self.highlight('iframe[title="Iframe Example"]')

3.5.0 - Drop support for Python 3.5

11 Jul 20:19
a67db6d

Choose a tag to compare

Drop support for Python 3.5

3.4.1 - More JS. Less jQuery.

11 Jul 17:31
5b5be33

Choose a tag to compare

More JS. Less jQuery.

3.4.0 - Multiple updates

08 Jul 21:21
52947ad

Choose a tag to compare