Basic Selenium Setup
Basic Selenium Setup Guide Selenium is an open-source, widely used software testing framework primarily used for automating web browsers. It allows testers and developers to write automation on the...
Basic Selenium Setup Guide Selenium is an open-source, widely used software testing framework primarily used for automating web browsers. It allows testers and developers to write automation on the...
PyPi Setup Guide PyPi is the python package index for people to upload their packages for anyone to use. Account Setup Go to pypi.org and create an account, make sure to validate your email. ...
PythonStarterPackage Tutorial The purpose of this tutorial is to show you how to create a standard python package from scratch. Feel free to reference the PythonStarterPackage when going through th...
Python Virtual Environments When working on different projects in the same environment, you will likely run into conflicts among your dependencies. The best way to avoid this is to use separate vir...
Executing Python in Shell To execute Python in Shell simply use python3 -c. For example, the following checks the location of your Python executable. python3 -c 'import sys; print(sys.executable);'
Install Python and Pip on Linux Check you’re python version with the following: python3 --version If your python version is not the latest, do the following: sudo apt install p...
Using Bat File to Execute Script Configure your Bat file as follows to execute your script: @pause @py.exe D:/Users/Me/Documents/example.py %* @pause
Setting up Environmental Variable Path Write the following to the .bashrc: export PATH_TO_NODE="C:\Users\Hello\AppData\Roaming\npm;C:\'Program Files'\nodejs" export PATH="$PATH:$PATH_TO_NODE...
Task Scheduler for Windows This is a guide on using the task scheduler on Windows. Use schtasks for help. schtasks -? List out scheduled tasks. Use -tn to find a specific task. ...
Resetting Old MacBook (2017+older) On startup hold the command + s till the black terminal boots up. In the terminal mount a new root with the following command: mount -uw / Remo...