V
V
Victor Incognito2020-07-21 15:24:39
Python
Victor Incognito, 2020-07-21 15:24:39

Is it possible with Selenium to make two clicks on a button at a custom interval?

Good afternoon, comrades. I am gradually learning the Python programming language. I decided to quietly write a bot for an old online game (not for profit, but for the purpose of acquiring skills).

A little about the part of the game with which the problem arose

Есть локация где игрок нападает на других игроков. Подряд можно напасть без задержки на определенное время 3 раза. Нажимая кнопку "НАПАСТЬ" - я совершаю атаку на случайного противника и мне выводится сразу же лог боя. Чтобы продолжить нападать, нужно выйти из страницы лога. Это лишнее действие. В игре есть фича, если 2 раза мышкой быстро клацнуть, то я смогу совершить одно нападение, но без вывода лога боя (он приходит в почту), тем самым сэкономив время на перемещении.


What doesn’t work for me: two clicks on the desired button with a given interval, I tried to set doubleClick() - it didn’t work, the browser reacts quickly to the first click and the second clan goes into milk. If I put just two clicks in a row, then an error occurs on the second click, since the button is gone.

Please advise how to proceed in this situation to solve the problem. Thank you all for your attention. :)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
_
_, 2020-07-21
@mrxor

Make the first click, then wait until the element is available, then make the second click.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question