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