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.
5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_H_
6 #define CHROME_TEST_CHROMEDRIVER_SESSION_H_
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"
20 class DictionaryValue
;
29 FrameInfo(const std::string
& parent_frame_id
,
30 const std::string
& frame_id
,
31 const std::string
& chromedriver_frame_id
);
33 std::string parent_frame_id
;
35 std::string chromedriver_frame_id
;
39 static const base::TimeDelta kDefaultPageLoadTimeout
;
41 explicit Session(const std::string
& id
);
42 Session(const std::string
& id
, scoped_ptr
<Chrome
> chrome
);
45 Status
GetTargetWindow(WebView
** web_view
);
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;
57 bool force_devtools_screenshot
;
58 scoped_ptr
<Chrome
> chrome
;
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
;
79 Session
* GetThreadLocalSession();
81 void SetThreadLocalSession(scoped_ptr
<Session
> session
);
83 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_H_