This directory contains the following files:
Firefox Installer.exe
- Firefox web browser installer.Git-2.42.0.2-64-bit.exe
- Git version control system installer.README.md
- This README file providing information about the contents of the directory.VSCodeUserSetup-x64-1.82.2.exe
- Visual Studio Code editor installer.geckodriver-v0.33.0-win64.zip
- Geckodriver, which is needed to work with Firefox in automated tests. Please extract the contents of this archive and place it in the Python installation directory. By default, the Python installation directory isC:\Users\<your_username>\AppData\Local\Programs\Python\<Python_version>\
.python-3.11.5-amd64.exe
- Python programming language installer.putty-64bit-0.79-installer.msi
- PuTTY SSH and Telnet client installer.
To enhance your programming experience, you may consider installing the following useful programs and extensions:
-
Visual Studio Code Extensions:
- Python: Provides support for Python development, including linting, debugging, and code formatting.
- GitLens: Enhances Git integration in Visual Studio Code, showing blame annotations and other Git information.
- Code Runner: Allows you to run code snippets directly from VS Code.
- Prettier: Automatically formats code to adhere to a consistent style.
- Bracket Pair Colorizer: Helps visually distinguish matching sets of parentheses, brackets, and braces.
-
Other Useful Tools:
- Git: A distributed version control system.
- Firefox: A fast and secure web browser.
- Geckodriver: A WebDriver for Firefox, useful for automating browser testing.
Feel free to explore and utilize these tools and extensions to enhance your productivity and development experience.
-
To use Geckodriver, please follow these steps:
- Open the
geckodriver-v0.33.0-win64.zip
archive. - Select all files inside the archive.
- Right-click on the selected files and choose "Extract All".
- Specify the path where you want to extract the files (e.g., ``C:\Users<your_username>\AppData\Local\Programs\Python<Python_version>\geckodriver.exe`).
- Open the
-
Adding the path to Geckodriver to the
PATH
environment variable on Windows allows you to run it from any directory in the command prompt or from other programs without specifying the full path.- Open "System Properties" through the Start menu or by searching in the Start menu.
- In the "System Properties" window, select the "Advanced" tab.
- Click on the "Environment Variables..." button.
- In the "User variables" section, find the
PATH
environment variable and select it. - Click on the "Edit..." button.
- Click on the "New" button and enter the path to the extracted Geckodriver (e.g., ``C:\Users<your_username>\AppData\Local\Programs\Python<Python_version>\geckodriver.exe`).
- Click "OK" in all open windows to save the changes.
Now you will be able to use Geckodriver from any directory without specifying the full path to it.