التخطي إلى المحتوى الرئيسي

المشاركات

عرض الرسائل ذات التصنيف selenium-python

Selenium with Python | How to write code of selenium web driver using Python Porgramming Language

Selenium with Python | How to write code of selenium web driver using Python Porgramming Language  What is selenium? It is automation based software system that is used to implement functional testing and regression testing operation for web application. selenium provide various component to pefrom testing operation using varius programming language. now the selenium 4 is the latest version of selenium. Selenium Component 1) Selenium IDE 1) Web Driver 3) Selenium GRID 4) Selenium Framework (Data driven, keyword driven, hybrid driven) python filename.py How to create selenium environment under windows for python programming language 1) install python (enable pip and configure python path) 2) open cmd and write  pip install selenium 3) create folder under any drive and open this folder using VS Code 4) create python file and write this script from selenium import webdriver driver = webdriver.Chrome() driver.get("https://www.google.com/") driver.quit() 5) open VS Code terminal a...