InstaPy quickstart.py не работает - проблема Selenium - PullRequest
0 голосов
/ 28 марта 2020

Я установил Python 3.8.2 и установил Instapy с помощью видеоурока и запустил установочный файл и windows стартовый файл, который поставляется с пакетом Instapy-quickstart от github.

Я также установил последняя версия Firefox.

Когда я запускаю файл windows_start.bat, он не находит файл quickstart.py.

Поэтому я открываю командную строку windows, go в каталог Instapy и запустите "python quickstart.py" и вернет следующее:

c:\development\python\instapy-quickstart>python quickstart.py
InstaPy Version: 0.6.8
 ._.  ._.  ._.  ._.  ._.  ._.  ._.  ._.  ._.
Workspace in use: "C:/Users/KWAN/InstaPy"
Traceback (most recent call last):
  File "quickstart.py", line 25, in <module>
    session = InstaPy(username=insta_username,
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\instapy\instapy.py", line 309, in __init__
    self.browser, err_msg = set_selenium_local_session(
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\instapy\browser.py", line 111, in set_selenium_local_session
    browser = webdriver.Firefox(
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 170, in __init__
    RemoteWebDriver.__init__(
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in __init__
    self.start_session(capabilities, browser_profile)
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 252, in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "C:\Program Files (x86)\Python38-32\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.SessionNotCreatedException: Message: Unable to find a matching set of capabilities

Мой файл quickstart.py такой (имя пользователя и пароль удалены по понятным причинам):

# imports
from instapy import InstaPy
from instapy import smart_run


# login credentials
insta_username = ''
insta_password = '
driver_path = 'C:/Users/KWAN/InstaPy/assets/geckodriver.exe'

comments = ['Nice shot! @{}',
        'I love your profile! @{}',
        'Your feed is an inspiration :thumbsup:',
        'Just incredible :open_mouth:',
        'What camera did you use @{}?',
        'Love your posts @{}',
        'Looks awesome @{}',
        'Getting inspired by you @{}',
        ':raised_hands: Yes!',
        'I can feel your passion @{} :muscle:']

# get an InstaPy session!
# set headless_browser=True to run InstaPy in the background

session = InstaPy(username=insta_username,
                  password=insta_password,
                  headless_browser=True,
                  geckodriver_path=driver_path)

with smart_run(session):
  """ Activity flow """     
  # general settings        
  session.set_dont_include(["friend1", "friend2", "friend3"])       

  # activity        
  session.like_by_tags(["natgeo"], amount=10)

  # Joining Engagement Pods
  session.set_do_comment(enabled=True, percentage=35)
  session.set_comments(comments)
  session.join_pods(topic='sports', engagement_mode='no_comments')

Я искал возможное решение в Интернете, но пока не нашел работающего. Любая идея, как я могу это исправить?

Спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...