Не очень понял о чем речь, но попытаюсь помочь.
Используйте клики без эмуляции, если элемент скрыт за другим элементом. Используйте >AT>Номер элемента чтобы кликнуть по нужному элементу из множестваClick on element (match)
-
@plantacja Use XPath search instead of Match variant.
It is much better and very easy to use -
use xpath, more specifically relative xpath.. much higher success rate.
for me what I use the most is //x[contains(text(),'y')]
This will look for an element with the tag x that contains the text y. You can play around with this and get pretty specific results. -
@plantacja said in Click on element (match):
How can i make BAS to click on first match?
MATCH>{{link}} >AT>0Here is the manual for selectors.