Sha256: 293d80318579cc46a74d2ffab1a670b898e5af2efd972a777d2d7ff81652644c
Contents?: true
Size: 368 Bytes
Versions: 4
Compression:
Stored size: 368 Bytes
Contents
#include "Visit.h" #include "Command.h" #include "WebPage.h" Visit::Visit(WebPage *page, QStringList &arguments, QObject *parent) : Command(page, arguments, parent) { } void Visit::start() { QUrl requestedUrl = QUrl::fromEncoded(arguments()[0].toUtf8(), QUrl::StrictMode); page()->currentFrame()->load(QUrl(requestedUrl)); emit finished(new Response(true)); }
Version data entries
4 entries across 4 versions & 3 rubygems
Version | Path |
---|---|
imseng-capybara-webkit-0.12.1 | src/Visit.cpp |
capybara-webkit-0.12.1 | src/Visit.cpp |
otherinbox-capybara-webkit-0.12.0 | src/Visit.cpp |
capybara-webkit-0.12.0 | src/Visit.cpp |