https://github.com/peter-aryanto/robotframework01
Experiments with Robot Framework
https://github.com/peter-aryanto/robotframework01
chromedriver playwright playwright-python python python3 robot robotfra selenium selenium-python selenium-webdriver
Last synced: 3 months ago
JSON representation
Experiments with Robot Framework
- Host: GitHub
- URL: https://github.com/peter-aryanto/robotframework01
- Owner: peter-aryanto
- Created: 2024-11-24T13:16:56.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-12-05T11:39:51.000Z (7 months ago)
- Last Synced: 2025-01-25T11:41:52.544Z (5 months ago)
- Topics: chromedriver, playwright, playwright-python, python, python3, robot, robotfra, selenium, selenium-python, selenium-webdriver
- Language: RobotFramework
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Robot Framework uses and runs existing libraries (https://www.youtube.com/watch?v=4hCegUxWKBQ).
On each library webpage there are 2 most important links: **Installation** (or project page or project on GitHub) and **Keywords**.Example of 2 common libraries (https://robotframework.org/#resources):
- Selenium library (https://robotframework.org/SeleniumLibrary/SeleniumLibrary.html)
- Browser library (https://marketsquare.github.io/robotframework-browser/Browser.html)
https://robotframework-browser.org
https://docs.robotframework.org/docs/different_libraries/browserSome setup scripts:
```
# conda deactivate # This is to deactivate any current environment from conda, e.g. .# The line right below may use either `python` or `python3`.
python3 -m venv .venv# For Windows, the line right below needs to be replaced with: .venv\Scripts\activate
source .venv/bin/activatepip install robotframework
robot --version
pip listdeactivate
```