Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timkong21/automate-linkedin-job-application-with-selenium
Apply page object design pattern with Selenium to automate LinkedIn application
https://github.com/timkong21/automate-linkedin-job-application-with-selenium
automation page-object-model python selenium unnitest
Last synced: 12 days ago
JSON representation
Apply page object design pattern with Selenium to automate LinkedIn application
- Host: GitHub
- URL: https://github.com/timkong21/automate-linkedin-job-application-with-selenium
- Owner: TimKong21
- Created: 2021-11-28T04:32:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-28T08:26:18.000Z (about 3 years ago)
- Last Synced: 2023-08-26T17:35:42.749Z (over 1 year ago)
- Topics: automation, page-object-model, python, selenium, unnitest
- Language: Jupyter Notebook
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automate LinkedIn Job Application
This repository demonstrates automation of job application with `selenium`. Page Objects design pattern is used to represent the area where the test interacts within the web application user interface.**Benefits of using page object pattern:**
- Ease reading test cases
- Create reusable code that can share across multiple test cases
- Reduce the amount of duplicated code
- Eease fixing changes in only one place when the user interface changes## References
Below are the references to the `selenium` API.
- [Installation](https://selenium-python.readthedocs.io/installation.html#:~:text=1.-,Installation,-%C2%B6)
- [Locating Elements](https://selenium-python.readthedocs.io/locating-elements.html#:~:text=4.-,Locating%20Elements,-%C2%B6)
- [Page Objects](https://selenium-python.readthedocs.io/page-objects.html#:~:text=6.-,Page%20Objects,-%C2%B6)