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

Issue 13185004: [chromedriver] Implement proxy capability. (Closed)

Created:
7 years, 9 months ago by chrisgao (Use stgao instead)
Modified:
7 years, 8 months ago
Reviewers:
kkania
CC:
chromium-reviews
Visibility:
Public.

Description

[chromedriver] Implement proxy capability. Added proxy as switches as arguments passed to command line. BUG=chromedriver:287 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=192836

Patch Set 1 #

Total comments: 1

Patch Set 2 : Address comments & Rebase. #

Total comments: 4

Patch Set 3 : Address comments. #

Total comments: 8

Patch Set 4 : Just rebase. #

Patch Set 5 : Address comment. #

Patch Set 6 : Check unexpected capabilities failed java tests. #

Total comments: 8

Patch Set 7 : Rebase and Address comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+600 lines, -213 lines) Patch
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
A chrome/test/chromedriver/capabilities.h View 1 2 3 4 5 6 1 chunk +39 lines, -0 lines 0 comments Download
A chrome/test/chromedriver/capabilities.cc View 1 2 3 4 5 6 1 chunk +234 lines, -0 lines 0 comments Download
A chrome/test/chromedriver/capabilities_unittest.cc View 1 2 3 4 5 6 1 chunk +254 lines, -0 lines 0 comments Download
M chrome/test/chromedriver/chrome_launcher.h View 1 2 3 4 5 6 2 chunks +8 lines, -20 lines 0 comments Download
M chrome/test/chromedriver/chrome_launcher.cc View 1 2 3 4 5 6 6 chunks +42 lines, -58 lines 0 comments Download
M chrome/test/chromedriver/chrome_launcher_unittest.cc View 1 2 3 4 5 6 3 chunks +9 lines, -67 lines 0 comments Download
M chrome/test/chromedriver/commands.cc View 1 2 3 4 5 6 2 chunks +11 lines, -68 lines 0 comments Download

Messages

Total messages: 16 (0 generated)
chrisgao (Use stgao instead)
7 years, 8 months ago (2013-03-29 20:12:27 UTC) #1
kkania
https://codereview.chromium.org/13185004/diff/1/chrome/test/chromedriver/commands.cc File chrome/test/chromedriver/commands.cc (right): https://codereview.chromium.org/13185004/diff/1/chrome/test/chromedriver/commands.cc#newcode48 chrome/test/chromedriver/commands.cc:48: Status ParseProxy(const base::DictionaryValue& proxy_dict, Can we factor the capability ...
7 years, 8 months ago (2013-03-29 20:52:46 UTC) #2
chrisgao (Use stgao instead)
https://codereview.chromium.org/13185004/diff/5001/chrome/test/chromedriver/commands.cc File chrome/test/chromedriver/commands.cc (right): https://codereview.chromium.org/13185004/diff/5001/chrome/test/chromedriver/commands.cc#newcode8 chrome/test/chromedriver/commands.cc:8: #include "base/callback.h" unused
7 years, 8 months ago (2013-04-02 15:37:17 UTC) #3
kkania
https://codereview.chromium.org/13185004/diff/5001/chrome/test/chromedriver/capabilities_parser.cc File chrome/test/chromedriver/capabilities_parser.cc (right): https://codereview.chromium.org/13185004/diff/5001/chrome/test/chromedriver/capabilities_parser.cc#newcode111 chrome/test/chromedriver/capabilities_parser.cc:111: if (desired_caps.Get("chromeOptions.logPath", &log_path) && what do you think about ...
7 years, 8 months ago (2013-04-02 16:24:08 UTC) #4
chrisgao (Use stgao instead)
https://codereview.chromium.org/13185004/diff/5001/chrome/test/chromedriver/capabilities_parser.cc File chrome/test/chromedriver/capabilities_parser.cc (right): https://codereview.chromium.org/13185004/diff/5001/chrome/test/chromedriver/capabilities_parser.cc#newcode111 chrome/test/chromedriver/capabilities_parser.cc:111: if (desired_caps.Get("chromeOptions.logPath", &log_path) && On 2013/04/02 16:24:08, kkania wrote: ...
7 years, 8 months ago (2013-04-03 18:51:43 UTC) #5
kkania
https://codereview.chromium.org/13185004/diff/16002/chrome/test/chromedriver/capabilities_parser.cc File chrome/test/chromedriver/capabilities_parser.cc (right): https://codereview.chromium.org/13185004/diff/16002/chrome/test/chromedriver/capabilities_parser.cc#newcode165 chrome/test/chromedriver/capabilities_parser.cc:165: parser_map["proxy"] = base::Bind(&ParseProxy); this isn't part of chromeOptions. It's ...
7 years, 8 months ago (2013-04-03 19:09:35 UTC) #6
chrisgao (Use stgao instead)
ptal Check unsupported option within "desiredCapabilities.chromeOptions" for desktop version only, otherwise java tests fail on ...
7 years, 8 months ago (2013-04-06 01:11:25 UTC) #7
chrisgao (Use stgao instead)
https://codereview.chromium.org/13185004/diff/16002/chrome/test/chromedriver/capabilities_parser.cc File chrome/test/chromedriver/capabilities_parser.cc (right): https://codereview.chromium.org/13185004/diff/16002/chrome/test/chromedriver/capabilities_parser.cc#newcode165 chrome/test/chromedriver/capabilities_parser.cc:165: parser_map["proxy"] = base::Bind(&ParseProxy); On 2013/04/03 19:09:35, kkania wrote: > ...
7 years, 8 months ago (2013-04-06 01:12:01 UTC) #8
kkania
lgtm https://codereview.chromium.org/13185004/diff/34001/chrome/test/chromedriver/capabilities_parser.cc File chrome/test/chromedriver/capabilities_parser.cc (right): https://codereview.chromium.org/13185004/diff/34001/chrome/test/chromedriver/capabilities_parser.cc#newcode12 chrome/test/chromedriver/capabilities_parser.cc:12: #include "base/stringprintf.h" base/strings/ https://codereview.chromium.org/13185004/diff/34001/chrome/test/chromedriver/capabilities_parser.cc#newcode21 chrome/test/chromedriver/capabilities_parser.cc:21: const base::Callback<bool(const base::FilePath&)>& ...
7 years, 8 months ago (2013-04-06 17:17:51 UTC) #9
chrisgao (Use stgao instead)
https://codereview.chromium.org/13185004/diff/34001/chrome/test/chromedriver/capabilities_parser.cc File chrome/test/chromedriver/capabilities_parser.cc (right): https://codereview.chromium.org/13185004/diff/34001/chrome/test/chromedriver/capabilities_parser.cc#newcode12 chrome/test/chromedriver/capabilities_parser.cc:12: #include "base/stringprintf.h" On 2013/04/06 17:17:52, kkania wrote: > base/strings/ ...
7 years, 8 months ago (2013-04-08 08:26:56 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/chrisgao@chromium.org/13185004/43001
7 years, 8 months ago (2013-04-08 08:27:30 UTC) #11
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 8 months ago (2013-04-08 08:36:14 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/chrisgao@chromium.org/13185004/43001
7 years, 8 months ago (2013-04-08 15:41:09 UTC) #13
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 8 months ago (2013-04-08 15:46:36 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/chrisgao@chromium.org/13185004/43001
7 years, 8 months ago (2013-04-08 18:09:54 UTC) #15
commit-bot: I haz the power
7 years, 8 months ago (2013-04-08 18:10:09 UTC) #16
Message was sent while issue was closed.
Change committed as 192836

Powered by Google App Engine
This is Rietveld 408576698