Metadata-Version: 2.1
Name: selenium-session-client
Version: 1.0.1
Summary: Bypass your app login screen by managing your browser session (cookies)
Home-page: https://github.com/blinq-io/selenium-session-manager
Author: dev0-blinq
Author-email: dev@blinq.io
License: MIT
Project-URL: Documentation, https://github.com/blinq-io/selenium-session-manager
Platform: any
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Provides-Extra: testing
License-File: LICENSE.txt

# Python client
Following is a code example to integrate it into your Python Selenium tests:
```python
import os
from time import sleep
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from session_client import init_session

def test():
    driver = webdriver.Chrome('chromedriver')
    init_session(driver, ['github'])
    driver.get("https://github.com/")
    sleep(5)
    driver.quit()

test()
```

To add the dependencies into your project:
### PIP
```bash
pip install selenium-session-client
```
