from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import time

# Set up the WebDriver (Make sure the correct driver is installed, e.g., chromedriver for Chrome)
driver = webdriver.Chrome(executable_path='/path/to/chromedriver')

# Open a website
driver.get('https://www.example.com')

# Wait for the page to load
time.sleep(2)  # You can replace this with WebDriverWait for better handling

# Interact with an element (e.g., search bar)
search_box = driver.find_element(By.NAME, 'q')
search_box.send_keys('Selenium WebDriver')
search_box.send_keys(Keys.RETURN)

# Wait for the results to load
time.sleep(2)

# Extract data from the page (e.g., titles of search results)
titles = driver.find_elements(By.CSS_SELECTOR, 'h3')
for title in titles:
    print(title.text)

# Close the browser
driver.quit()