capybara-webkit/src/Node.cpp

15 lines
457 B
C++
Raw Normal View History

#include "Node.h"
#include "WebPage.h"
Node::Node(WebPage *page, QStringList &arguments, QObject *parent) : Command(page, arguments, parent) {
}
void Node::start() {
QStringList functionArguments(arguments());
QString functionName = functionArguments.takeFirst();
QVariant result = page()->invokeCapybaraFunction(functionName, functionArguments);
QString attributeValue = result.toString();
emit finished(new Response(true, attributeValue));
}