Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Issue 10875044: Basic framework for devtools-based scrolling tests. (Closed)

Created:
8 years, 4 months ago by nduca
Modified:
8 years, 3 months ago
Reviewers:
dtu, alokp
CC:
chromium-reviews, pam+watch_chromium.org, DaveMoore
Visibility:
Public.

Description

Basic framework for devtools-based scrolling tests. BUG=144483 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=153616

Patch Set 1 #

Total comments: 7

Patch Set 2 : nitfixes #

Patch Set 3 : Add backends and modular discovery. #

Total comments: 17

Patch Set 4 : fixes #

Patch Set 5 : Handle json failures #

Patch Set 6 : with the added files #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1930 lines, -0 lines) Patch
A tools/chrome_remote_control/.gitignore View 1 chunk +4 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/__init__.py View 1 2 3 1 chunk +10 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/browser.py View 1 2 1 chunk +44 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/browser_finder.py View 1 2 3 1 chunk +136 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/browser_finder_unittest.py View 1 2 1 chunk +134 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/browser_options.py View 1 2 3 1 chunk +51 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/browser_unittest.py View 1 2 3 1 chunk +16 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/desktop_browser_backend.py View 1 2 3 1 chunk +92 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/inspector_backend.py View 1 2 1 chunk +74 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/run_tests.py View 1 2 3 1 chunk +94 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/tab.py View 1 2 3 1 chunk +52 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/tab_runtime.py View 1 2 3 4 5 1 chunk +41 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/tab_runtime_unittest.py View 1 2 3 4 5 1 chunk +43 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/tab_unittest.py View 1 2 3 1 chunk +35 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/websocket.py View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/chrome_remote_control/websocket_unittest.py View 1 2 3 1 chunk +9 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/examples/rendering_microbenchmark_test.py View 1 2 3 1 chunk +76 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/examples/top1k View 1 chunk +999 lines, -0 lines 0 comments Download
A tools/chrome_remote_control/run_tests View 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
nduca
8 years, 4 months ago (2012-08-24 01:03:09 UTC) #1
dtu
Some changes that made the unit tests pass on my machine. https://chromiumcodereview.appspot.com/10875044/diff/1/tools/chrome_remote_control/chrome_remote_control/browser_finder.py File tools/chrome_remote_control/chrome_remote_control/browser_finder.py (right): ...
8 years, 4 months ago (2012-08-24 08:55:43 UTC) #2
alokp
I think it will be better to move: tools/chrome_remote_control/chrome_remote_control to tools/chrome_remote_control/src
8 years, 3 months ago (2012-08-27 18:13:33 UTC) #3
nduca
Thats not how python modules work. If you did that, then a library using chrome ...
8 years, 3 months ago (2012-08-27 18:43:35 UTC) #4
alokp
lgtm
8 years, 3 months ago (2012-08-27 19:38:31 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nduca@chromium.org/10875044/8001
8 years, 3 months ago (2012-08-27 21:23:37 UTC) #6
dtu
http://codereview.chromium.org/10875044/diff/8001/tools/chrome_remote_control/chrome_remote_control/browser.py File tools/chrome_remote_control/chrome_remote_control/browser.py (right): http://codereview.chromium.org/10875044/diff/8001/tools/chrome_remote_control/chrome_remote_control/browser.py#newcode31 tools/chrome_remote_control/chrome_remote_control/browser.py:31: self.Close() Makes more sense in __del__, so it'll take ...
8 years, 3 months ago (2012-08-27 22:27:27 UTC) #7
nduca
Thanks d2, great feedback. Mostly all applied. http://codereview.chromium.org/10875044/diff/8001/tools/chrome_remote_control/chrome_remote_control/browser.py File tools/chrome_remote_control/chrome_remote_control/browser.py (right): http://codereview.chromium.org/10875044/diff/8001/tools/chrome_remote_control/chrome_remote_control/browser.py#newcode31 tools/chrome_remote_control/chrome_remote_control/browser.py:31: self.Close() Remember, ...
8 years, 3 months ago (2012-08-28 00:20:16 UTC) #8
dtu
lgtm
8 years, 3 months ago (2012-08-28 00:47:45 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/nduca@chromium.org/10875044/10006
8 years, 3 months ago (2012-08-28 00:49:49 UTC) #10
commit-bot: I haz the power
8 years, 3 months ago (2012-08-28 03:13:29 UTC) #11
Change committed as 153616

Powered by Google App Engine
This is Rietveld 408576698