Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / test / chromedriver / session.h
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_H_
6 #define CHROME_TEST_CHROMEDRIVER_SESSION_H_
7
8 #include <list>
9 #include <string>
10
11 #include "base/basictypes.h"
12 #include "base/files/scoped_temp_dir.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/scoped_vector.h"
15 #include "base/time/time.h"
16 #include "chrome/test/chromedriver/basic_types.h"
17 #include "chrome/test/chromedriver/chrome/geoposition.h"
18
19 namespace base {
20 class DictionaryValue;
21 }
22
23 class Chrome;
24 class Status;
25 class WebDriverLog;
26 class WebView;
27
28 struct FrameInfo {
29   FrameInfo(const std::string& parent_frame_id,
30             const std::string& frame_id,
31             const std::string& chromedriver_frame_id);
32
33   std::string parent_frame_id;
34   std::string frame_id;
35   std::string chromedriver_frame_id;
36 };
37
38 struct Session {
39   static const base::TimeDelta kDefaultPageLoadTimeout;
40
41   explicit Session(const std::string& id);
42   Session(const std::string& id, scoped_ptr<Chrome> chrome);
43   ~Session();
44
45   Status GetTargetWindow(WebView** web_view);
46
47   void SwitchToTopFrame();
48   void SwitchToSubFrame(const std::string& frame_id,
49                         const std::string& chromedriver_frame_id);
50   std::string GetCurrentFrameId() const;
51   std::vector<WebDriverLog*> GetAllLogs() const;
52   std::string GetFirstBrowserError() const;
53
54   const std::string id;
55   bool quit;
56   bool detach;
57   bool force_devtools_screenshot;
58   scoped_ptr<Chrome> chrome;
59   std::string window;
60   int sticky_modifiers;
61   // List of |FrameInfo|s for each frame to the current target frame from the
62   // first frame element in the root document. If target frame is window.top,
63   // this list will be empty.
64   std::list<FrameInfo> frames;
65   WebPoint mouse_position;
66   base::TimeDelta implicit_wait;
67   base::TimeDelta page_load_timeout;
68   base::TimeDelta script_timeout;
69   scoped_ptr<std::string> prompt_text;
70   scoped_ptr<Geoposition> overridden_geoposition;
71   // Logs that populate from DevTools events.
72   ScopedVector<WebDriverLog> devtools_logs;
73   scoped_ptr<WebDriverLog> driver_log;
74   base::ScopedTempDir temp_dir;
75   scoped_ptr<base::DictionaryValue> capabilities;
76   bool auto_reporting_enabled;
77 };
78
79 Session* GetThreadLocalSession();
80
81 void SetThreadLocalSession(scoped_ptr<Session> session);
82
83 #endif  // CHROME_TEST_CHROMEDRIVER_SESSION_H_