How to use codes #53863
-
BodyDear All, I am a newbie and trying to use some of the existing codes for web scraping. I want to use the below python code for web scraping. I put it in Jupyter's Note book but it is not working there. Can somebody suggests to me which notebook should I use to run below webscraping program. BR Guidelines
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
|
when i run it at jupyter notebook it shows below error ModuleNotFoundError: No module named 'selenium' |
Beta Was this translation helpful? Give feedback.
-
That means the You don't get the same error for the other modules in your code ( |
Beta Was this translation helpful? Give feedback.
-
|
Another problem can someone help me how to fix below issue AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath' |
Beta Was this translation helpful? Give feedback.
That means the
seleniummodule isn't installed where you're running the code. See the installation instructions in the Selenium repository.You don't get the same error for the other modules in your code (
sys,csv,time) because they are part of the Python standard library, so you always have them if you install Python. 😉