Python Forum

Full Version: Getting import error when trying to import Selenium
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
from selenium import webbrowser

webbrowser.get(
    "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s"
).open("https://www.geeksforgeeks.org")


button = webbrowser.find_element_by_class_name("slide-out-btn")

button.click()
I am using selenium

Output/errors: Traceback (most recent call last):
File "C:/Users/Abdul_szuzdge/PycharmProjects/untitled/project2.py", line 4, in <module>
from selenium import webbrowser
ImportError: cannot import name 'webbrowser' from 'selenium' (C:\Users\Abdul_szuzdge\PycharmProjects\untitled\venv\lib\site-packages\selenium\__init__.py)

Process finished with exit code 1

What I am trying too do: I am trying to make the script go to the site 'https://www.geeksforgeeks.org' and click the button
P.S: I am new to python

*I am using PyCharm*
it's webdriver, not webbrowser