Post 在 Instagram 硒上 python
Post on instagram selenium python
我想上传图片或视频,然后 post 使用 python selenium
将其上传到 Instagram
我试过了:
driver.find_element_by_class_name("_0TPg").send_keys('/path/to/the/picture')
还有这个:
actions = webdriver.ActionChains(Drive)
element = Drive.find_element_by_class_name("_0TPg")
actions.move_to_element(element)
actions.click()
actions.send_keys('/path/to/the/picture')
actions.perform()
但是 None 他们成功了。
连 INSTAPY 都不行。
如果有人帮助我,我将不胜感激!
Insagram Mobile Emilation
(手机版Chrome Instagram)
我们应该 post 单击“+”号并打开图像
python3
您可以使用
轻松做到这一点
首先安装包
pip install instabot
这是代码:
from instabot import Bot
bot = Bot()
bot.login(username=`UserName`, password=`Password` ,use_cookie=False)
self.bot=bot
bot.upload_photo(`PATH`, caption=`YOURCAPTION`)
如果要上传视频,此方法无效
我想上传图片或视频,然后 post 使用 python selenium
将其上传到 Instagram我试过了:
driver.find_element_by_class_name("_0TPg").send_keys('/path/to/the/picture')
还有这个:
actions = webdriver.ActionChains(Drive)
element = Drive.find_element_by_class_name("_0TPg")
actions.move_to_element(element)
actions.click()
actions.send_keys('/path/to/the/picture')
actions.perform()
但是 None 他们成功了。
连 INSTAPY 都不行。
如果有人帮助我,我将不胜感激!
Insagram Mobile Emilation
(手机版Chrome Instagram) 我们应该 post 单击“+”号并打开图像
python3
您可以使用
轻松做到这一点
首先安装包
pip install instabot
这是代码:
from instabot import Bot
bot = Bot()
bot.login(username=`UserName`, password=`Password` ,use_cookie=False)
self.bot=bot
bot.upload_photo(`PATH`, caption=`YOURCAPTION`)
如果要上传视频,此方法无效