mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
15 lines
226 B
C
15 lines
226 B
C
|
#include "Command.h"
|
||
|
|
||
|
class WebPage;
|
||
|
|
||
|
class GetCookies : public Command {
|
||
|
Q_OBJECT;
|
||
|
|
||
|
public:
|
||
|
GetCookies(WebPage *page, QObject *parent = 0);
|
||
|
virtual void start(QStringList &arguments);
|
||
|
|
||
|
private:
|
||
|
QString m_buffer;
|
||
|
};
|