1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/scoped_ptr.h"
#include "chrome/test/automation/tab_proxy.h"
#include "chrome/test/pyautolib/pyautolib.h"
#include "googleurl/src/gurl.h"
PyUITestSuite::PyUITestSuite(int argc, char** argv)
: UITestSuite(argc, argv),
UITestBase() {
UITestSuite::Initialize();
}
PyUITestSuite::~PyUITestSuite() {
UITestSuite::Shutdown();
}
void PyUITestSuite::SetUp() {
UITestBase::SetUp();
}
void PyUITestSuite::TearDown() {
UITestBase::TearDown();
}
void PyUITestSuite::NavigateToURL(const char* url_string) {
GURL url(url_string);
UITestBase::NavigateToURL(url);
}
void PyUITestSuite::NavigateToURL(
const char* url_string, int window_index, int tab_index) {
GURL url(url_string);
UITestBase::NavigateToURL(url, window_index, tab_index);
}
bool PyUITestSuite::AppendTab(const GURL& tab_url, int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
return browser_proxy->AppendTab(tab_url);
}
bool PyUITestSuite::ApplyAccelerator(int id, int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
return browser_proxy->ApplyAccelerator(id);
}
bool PyUITestSuite::ActivateTab(int tab_index, int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
return browser_proxy->ActivateTab(tab_index);
}
void PyUITestSuite::SetDownloadShelfVisible(bool is_visible, int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
ASSERT_TRUE(browser_proxy.get());
EXPECT_TRUE(browser_proxy->SetShelfVisible(is_visible));
}
bool PyUITestSuite::IsDownloadShelfVisible(int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
EXPECT_TRUE(browser_proxy.get());
if (!browser_proxy.get())
return false;
bool visible = false;
EXPECT_TRUE(browser_proxy->IsShelfVisible(&visible));
return visible;
}
int PyUITestSuite::GetTabCount(int window_index) {
return UITestBase::GetTabCount(window_index);
}
GURL PyUITestSuite::GetActiveTabURL(int window_index) {
return UITestBase::GetActiveTabURL(window_index);
}
void PyUITestSuite::OpenFindInPage(int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
ASSERT_TRUE(browser_proxy.get());
EXPECT_TRUE(browser_proxy->OpenFindInPage());
}
bool PyUITestSuite::IsFindInPageVisible(int window_index) {
scoped_refptr<BrowserProxy> browser_proxy =
automation()->GetBrowserWindow(window_index);
EXPECT_TRUE(browser_proxy.get());
if (!browser_proxy.get())
return false;
bool is_visible;
EXPECT_TRUE(browser_proxy->IsFindWindowFullyVisible(&is_visible));
return is_visible;
}
std::string PyUITestSuite::GetDownloadDirectory() {
FilePath download_dir;
scoped_refptr<TabProxy> tab_proxy(GetActiveTab());
EXPECT_TRUE(tab_proxy.get());
if (!tab_proxy.get())
return download_dir.value();
EXPECT_TRUE(tab_proxy->GetDownloadDirectory(&download_dir));
return download_dir.value();
}
bool PyUITestSuite::OpenNewBrowserWindow(bool show) {
return automation()->OpenNewBrowserWindow(Browser::TYPE_NORMAL, show);
}
bool PyUITestSuite::InstallExtension(const FilePath& crx_file) {
return automation()->InstallExtension(crx_file);
}
|