filipefilardi / wpp-broadcaster

Crawler made with Selenium and Python to constantly receive video/audio from target and broadcast to a list of contacts.
MIT License
4 stars 1 forks source link

Issue with running it. #1

Closed lddd closed 6 years ago

lddd commented 6 years ago
 ./broadcast.py
Traceback (most recent call last):
  File "./broadcast.py", line 3, in <module>
    import selenium.webdriver.support.ui as ui
ImportError: No module named selenium.webdriver.support.ui
[root@CentOS-74-64-minimal ~]# pip install -U selenium
Requirement already up-to-date: selenium in /opt/miniconda3/lib/python3.6/site-packages
filipefilardi commented 6 years ago

I'm almost sure your error is caused by not have installed geckodriver. Can you double check section 1.3 drivers in selenium documentation.

pip install selenium is not enough to use selenium. You must install a webdriver and for our case, geckdriver (Mozilla). I recommend read the section 1.3 mentioned and then download driver here.

lddd commented 6 years ago

Solved it. i was using the wrong geckodriver. Thanks for your kind help