Я ПРОГРАМИРУЮ НА ПАЙТОНЕ И Я НАПИСАЛ ПРОГРАМУ БОТ ДЛЯ МАЙКРОСОФТ ТИМС КОТОРАЯ СОЗДАЕТ БОТА В СОБРАНИИ ТУТ КСТЬ ОШИБКА

import telebot

bot = telebot.Telebot('1792196739A:AGNKmabWkzDWrq3CxFP91gVYbpzSgOqDK0')

def site_desktop(url):
chrome_options = webdriver.ChromeOptions()
driver = webdriver.Chrome(executable_path=driver_chrome, options=chrome_options)
driver.set_window_size(1920, 1080)
driver.get('https://teams.microsoft.com/l/meetup-join/')
find_and_click('/open_team.png')
sleep(3)
driver.close()

@bot.message_handler(content_types=['text'])
def get_text_messages(message):
if message.text:
try:
bot.send_message(message.chat.id, text='Стартую вход на пару')
txt = message.text
site_desktop(txt)
find_and_click('/disable_micro.png')
if find_element('/micro_status_on.png'):
find_and_click('/disable_micro.png')
find_and_click('/apply_study.png')
active_window('OBS')
press_key('f7')
sleep(3)

create_screenshot(dir_to_save_fail_screen, name_fail_screen)
bot.send_photo(message.chat.id, open(dir_to_save_fail_screen + name_fail_screen, 'rb'))
bot.send_message(message.chat.id, text='Зашел на пару, включил запись экрана')

# Длительность пары 45 мин == 5400
sleep(5400)

bot.send_message(message.chat.id, text='Пара подошла к концу, выключаю запись экрана, выхожу')
active_window('OBS')
press_key('f8')
sleep(3)

find_and_click('/exit.png')
bot.send_message(message.chat.id, text='Успешное завершение')
except Exception as e:
bot.send_message(message.chat.id, text='ОШИБКА + ' + str(e))

bot.polling()

kiramillerthe1 kiramillerthe1    2   07.04.2021 11:14    1

Другие вопросы по теме Информатика