├── .gitignore ├── LICENSE ├── README.md ├── readme ├── fantaso.png ├── python.png ├── selenium.png └── whatsapp.png ├── setup.py └── simon ├── __init__.py ├── accounts ├── __init__.py ├── elements.py ├── locators.py ├── pages.py └── tests │ └── __init__.py ├── chat ├── __init__.py ├── elements.py ├── locators.py ├── pages.py └── tests │ └── __init__.py ├── chats ├── __init__.py ├── elements.py ├── locators.py ├── pages.py └── tests │ └── __init__.py ├── header ├── __init__.py ├── elements.py ├── locators.py ├── pages.py └── tests │ └── __init__.py ├── locators.py ├── pages.py ├── requirements.txt ├── search ├── __init__.py ├── elements,.py ├── locators.py ├── pages.py └── tests │ └── __init__.py └── tests ├── __init__.py ├── accounts.py ├── base.py ├── chat.py └── chats.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/README.md -------------------------------------------------------------------------------- /readme/fantaso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/readme/fantaso.png -------------------------------------------------------------------------------- /readme/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/readme/python.png -------------------------------------------------------------------------------- /readme/selenium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/readme/selenium.png -------------------------------------------------------------------------------- /readme/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/readme/whatsapp.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/setup.py -------------------------------------------------------------------------------- /simon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/accounts/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/accounts/elements.py -------------------------------------------------------------------------------- /simon/accounts/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/accounts/locators.py -------------------------------------------------------------------------------- /simon/accounts/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/accounts/pages.py -------------------------------------------------------------------------------- /simon/accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/chat/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/chat/elements.py -------------------------------------------------------------------------------- /simon/chat/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/chat/locators.py -------------------------------------------------------------------------------- /simon/chat/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/chat/pages.py -------------------------------------------------------------------------------- /simon/chat/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/chats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/chats/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/chats/elements.py -------------------------------------------------------------------------------- /simon/chats/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/chats/locators.py -------------------------------------------------------------------------------- /simon/chats/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/chats/pages.py -------------------------------------------------------------------------------- /simon/chats/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/header/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/header/elements.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/header/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/header/locators.py -------------------------------------------------------------------------------- /simon/header/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/header/pages.py -------------------------------------------------------------------------------- /simon/header/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/locators.py -------------------------------------------------------------------------------- /simon/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/pages.py -------------------------------------------------------------------------------- /simon/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 -------------------------------------------------------------------------------- /simon/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/search/elements,.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/search/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/search/locators.py -------------------------------------------------------------------------------- /simon/search/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/search/pages.py -------------------------------------------------------------------------------- /simon/search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simon/tests/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/tests/accounts.py -------------------------------------------------------------------------------- /simon/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/tests/base.py -------------------------------------------------------------------------------- /simon/tests/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/tests/chat.py -------------------------------------------------------------------------------- /simon/tests/chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantaso/whatsapp-web/HEAD/simon/tests/chats.py --------------------------------------------------------------------------------