Posts

Python Selenium Set up in IntelliJ Idea for Windows

[ For Windows ] 1. Download and Install latest python from https://www.python.org/downloads/ 2. After installation go to system environment variables and check for the path of python. that path must be looks like ~~\AppData\Local\Programs\Python\Python310\Scripts 3. Now run the mandatory commands below for installing Selenium and WebDriver Manager. Note :- Manual webdriver(e.g. chrome/ firefox etc.) path is not working now. Hence we have to install WebDriverManager through pip command. === For Selenium == pip install selenium  === For WebDriver Manager == pip install webdriver-manager 4. Download and install intellij Idea community edition from https://www.jetbrains.com/idea/download/#section=windows 5. After success full installtion open the Intellij Idea Editor. 6. Go to File -> Settings -> plugins :: and search for python community edition and install from marketplace. 7. Now go to File -> new -> Project and create a fresh python project 8. Create a fresh python...