@dp.message_handler(lambda message: 'Текст ' in message.text)
async def test(message: types.Message):
await bot.send_message(message.from_user.id,reply_markup=keybord)
@dp.message_handler(text='Текст')
async def test(message: types.Message):
await bot.send_message(message.from_user.id,reply_markup=keybord)
@dp.message_handler(content_type=['text'])
async def test(message: types.Message):
if message.text = "Текст":
await bot.send_message(message.from_user.id,reply_markup=keybord)
await bot.send_message(message.from_user.id,reply_markup=keybord)
await message.answer("Хмм", reply_markup=keybord )