A
A
aab1372019-07-30 04:39:46
Python
aab137, 2019-07-30 04:39:46

What is the easiest way to find this button?

How to find this button using Selenium:

<div class="task-action-go tiled task-go-21792661" data-ng-click="doTask(task)" ng-hide="task.id == checking_task_id || task.id == go_task_id" data-ng-class="['task-go-' + task.id]">
                    <div class="go ng-binding">Выполнить</div><div class="price ng-binding">+ 2 балла</div>
                </div>

, if too lazy to search using find_element_by_xpath('/html/body/..........')?
find_element_by_partial_link_text('Выполнить')gives an error
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: Выполнить

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey, 2019-07-30
@aab137

//div[@data-ng-click="doTask(task)"][contains(., "Execute")]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question