☑️pyc

An instance of Pylenium for a Test Class

Usage

The pyc fixture is used if you want a single instance of Pylenium that is shared across tests within a Test Class.

from pylenium.driver import Pylenium

class TestSauceDemo:
    def test_land_on_products_page_after_login(self, pyc: Pylenium):
        pyc.visit("https://www.saucedemo.com/")
        pyc.get("#user-name").type("standard_user")
        pyc.get("#password").type("secret_sauce")
        pyc.get("#login-button").click()
        assert pyc.contains("Products").should().be_visible()
        
    def test_add_item_to_cart_increments_counter_by_1(self, pyc: Pylenium):
        pyc.get("[id*='add-to-cart']").click()
        assert pyc.get("a.shopping_cart_link").should().have_text("1")

Arguments

  • none

Yields

  • Pylenium - an instance of Pylenium driver that interacts with the web

pyc_config

When using pyc, an instance of PyleniumConfig is also created and can be managed per test class. You can access pyc_config as a fixture or directly from pyc.config

Access by Fixture

Recommended because it's fewer lines of code and you already have access via Pylenium

Last updated