Selenium Python Automation Testing
- crystgandhi
- Jan 24, 2024
- 1 min read
Open Browser and Launch the Application
from selenium import webdriver
# Create a new instance of the Chrome WebDriver
driver = webdriver.Chrome()
# Open the first tab and navigate to a website
driver.get("https://demoqa.com/automation-practice-form")
Comments