Python · pip install · Method reference
Every vibium
Python method,
in one place.
The complete vibium Python API — 72 methods across browser, navigation, element interaction, keyboard, mouse, capture, and time control. Methods use snake_case. el.* methods are called on the handle returned by page.find(). Click any card to see parameters and a code example.
72Methods
10Categories
1Python API
— Typical Python test flow
Find, act, assert.
1bro = browser.start(headless=True)
↓
2page = bro.new_page()
↓
3page.go('https://app.example.com')
↓
4el = page.find(role='button', text='Sign in')
↓
5el.click()
↓
6page.screenshot(full_page=True)