You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from selenium.webdriver.chrome.service import Service
# After line 44, use this:
self.driver = webdriver.Chrome(service=Service(webdriver_path), options=options)
Finally, while building the scraper, use the following command in your code:
Note You may encounter more errors while scraping which are related to the source code of the websites being scraped.
You can raise a new issue reporting the link being scraped and the complete error message.
Would be really interested in using the scraper but unfortunately wasn't able to run it so far.
pip install paperscraper@git+https://github.com/NLPatVCU/PaperScraper.git
from paperscraper import PaperScraper
worked finescraper = PaperScraper()
) resulted in the following error:TypeError Traceback (most recent call last)
Cell In[5], line 1
----> 1 PaperScraper()
File d:\paperscraper\paperscraper\PaperScraper.py:45, in PaperScraper.init(self, webdriver_path)
42 if ('webdriver_path' is not None):
43 self.webdriver_path = webdriver_path
---> 45 self.driver = webdriver.Chrome(webdriver_path, options=options)
TypeError: WebDriver.init() got multiple values for argument 'options'
The text was updated successfully, but these errors were encountered: