Answer the question
In order to leave comments, you need to log in
How to execute function on onklick in phantomjs?
Good morning, colleagues!
Please tell me how should I be?
Through phantom I open the page, everything is great ... there is a link on the page
<a href="#" onclick="set_calendar_date('-7'); return false;"><span>11/06 Вс</span></a>
page.open(siteUrl, function(status) {
// Данный статус указывает, что ссылка открылась
// успешно и вернулся ответ сервера с кодом 200
if (status === 'success') {
set_calendar_date('-7'); return false;
setTimeout(function() {
console.log(page.content);
}, 3000);
// Вывод результата через обычный console.log
}
// Закрываем PhantomJS
exit();
});
page.open(siteUrl, function(status) {
// Данный статус указывает, что ссылка открылась
// успешно и вернулся ответ сервера с кодом 200
if (status === 'success') {
console.log(page.content);
// Вывод результата через обычный console.log
}
// Закрываем PhantomJS
exit();
});
Answer the question
In order to leave comments, you need to log in
Through the webdriver on XPath find the specified link and call onclick().
set_calendar_date('-7'); return false;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question