Posts

Showing posts from March, 2021

Selenium with Python

Image
 Installing Python,Selenium & Pycharm IDE <Command Used >      where python                                         Command to : list all the libraries already available with python Install selenium How to Run Tests on Chrome, Firefox & IE Browsers Links https://www.selenium.dev/downloads/ https://github.com/mozilla/geckodriver/releases https://sites.google.com/a/chromium.org/chromedriver/ https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver#required-configuration https://selenium-release.storage.googleapis.com/index.html?path=3.9/ Code example: ...\SeleniumProject\MultiBrowser.py WebDriver Commands Code example: ...\SeleniumProject\basiccommands.py WebDriver Navigational Commands Code example: ...\SeleniumProject\navigationcommands.py WebDriver Conditional Commands Code example: ...\SeleniumProject\con...