Chromium Code Reviews

Issue 1701006: Implement UI automation on the Mac.... (Closed)

Created:
10 years, 8 months ago by John Grabowski
Modified:
9 years, 6 months ago
Reviewers:
jmikhail, Nico, Nirnimesh
CC:
chromium-reviews, John Grabowski, Paweł Hajdan Jr., pam+watch_chromium.org, davemoore+watch_chromium.org, ben+cc_chromium.org
Visibility:
Public.

Description

Implement UI automation on the Mac. Code is untested. From gChat: me: do you have a good test I can use to make sure mac impl of ui_controls for sending events works OK? Or would you prefer I send you CLs to play with and we iterate by hand? Joe: I would like the CL to play with to see if I can get it to work with the code I wrote Warning to Joe: mouse moved events currently use the Mac coordinate frame (0,0 is bottom-left not top-left). That's easy to switch; I'd like to do whatever is easiest to get WebDriver working. BUG=26102 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=46005

Patch Set 1 #

Patch Set 2 : '' #

Total comments: 2

Patch Set 3 : '' #

Patch Set 4 : '' #

Patch Set 5 : '' #

Patch Set 6 : '' #

Patch Set 7 : '' #

Patch Set 8 : '' #

Unified diffs Side-by-side diffs Stats (+344 lines, -56 lines)
M base/keyboard_codes_win.h View 1 chunk +2 lines, -1 line 0 comments
M chrome/browser/autocomplete/autocomplete_edit_view_browsertest.cc View 1 chunk +1 line, -0 lines 0 comments
M chrome/browser/automation/automation_provider.cc View 7 chunks +6 lines, -12 lines 0 comments
M chrome/browser/automation/automation_provider_win.cc View 1 chunk +2 lines, -1 line 0 comments
M chrome/browser/automation/ui_controls.h View 2 chunks +5 lines, -1 line 0 comments
M chrome/browser/automation/ui_controls_linux.cc View 3 chunks +7 lines, -3 lines 0 comments
A chrome/browser/automation/ui_controls_mac.mm View 1 chunk +240 lines, -0 lines 0 comments
M chrome/browser/automation/ui_controls_win.cc View 1 chunk +4 lines, -1 line 0 comments
M chrome/browser/browser_focus_uitest.cc View 9 chunks +10 lines, -9 lines 0 comments
M chrome/browser/browser_keyevents_browsertest.cc View 1 chunk +3 lines, -1 line 0 comments
M chrome/browser/chromeos/compact_location_bar_host_browsertest.cc View 4 chunks +6 lines, -5 lines 0 comments
M chrome/browser/chromeos/compact_navigation_bar_browsertest.cc View 1 chunk +3 lines, -3 lines 0 comments
M chrome/browser/views/bookmark_bar_view_test.cc View 10 chunks +10 lines, -10 lines 0 comments
M chrome/browser/views/find_bar_host_interactive_uitest.cc View 1 chunk +1 line, -1 line 0 comments
M chrome/browser/views/frame/browser_view.cc View 1 chunk +25 lines, -6 lines 0 comments
M chrome/chrome_browser.gypi View 1 chunk +1 line, -0 lines 0 comments
M chrome/test/ui_test_utils_mac.cc View 1 chunk +11 lines, -0 lines 0 comments
M views/event.h View 1 chunk +7 lines, -2 lines 0 comments

Messages

Total messages: 11 (0 generated)
John Grabowski
Only ui_controls_mac.mm is interesting
10 years, 8 months ago (2010-04-23 01:49:32 UTC) #1
Nirnimesh
LGTM
10 years, 8 months ago (2010-04-23 19:18:34 UTC) #2
Nico
http://codereview.chromium.org/1701006/diff/13002/15010 File chrome/browser/automation/ui_controls.h (right): http://codereview.chromium.org/1701006/diff/13002/15010#newcode51 chrome/browser/automation/ui_controls.h:51: bool command); Drive-by: Could this be enums instead of ...
10 years, 8 months ago (2010-04-23 19:24:29 UTC) #3
Nico
10 years, 8 months ago (2010-04-23 19:24:44 UTC) #4
John Grabowski
New diffs up. Changes: - After discussing with Joe, flip the coordinate frame for Mac ...
10 years, 8 months ago (2010-04-24 01:11:12 UTC) #5
John Grabowski
http://codereview.chromium.org/1701006/diff/13002/15010 File chrome/browser/automation/ui_controls.h (right): http://codereview.chromium.org/1701006/diff/13002/15010#newcode51 chrome/browser/automation/ui_controls.h:51: bool command); On 2010/04/23 19:24:29, Nico wrote: > Drive-by: ...
10 years, 8 months ago (2010-04-24 01:12:24 UTC) #6
Joe
I think a command enum should be added to KeyboardCode typedef under keyboard_codes_win & keyboard_codes_posix. ...
10 years, 8 months ago (2010-04-27 10:12:56 UTC) #7
John Grabowski
ALT is otherwise known as VKEY_MENU. Looking into Command I noticed that the posix keys ...
10 years, 8 months ago (2010-04-29 00:27:26 UTC) #8
Joe
LGTM then On Wed, Apr 28, 2010 at 5:27 PM, John Grabowski <jrg@chromium.org> wrote: > ...
10 years, 7 months ago (2010-04-29 18:57:23 UTC) #9
John Grabowski
Thanks for the LGTM, but... does it work? What did you try? jrg On Thu, ...
10 years, 7 months ago (2010-04-29 19:20:11 UTC) #10
Joe
10 years, 7 months ago (2010-04-29 21:30:15 UTC) #11
I tested with a simple string and it worked but I didn't check unicode

On Thu, Apr 29, 2010 at 12:19 PM, John Grabowski <jrg@chromium.org> wrote:
> Thanks for the LGTM, but... does it work?  What did you try?
> jrg
>
> On Thu, Apr 29, 2010 at 11:57 AM, Joe Mikhail <jmikhail@google.com> wrote:
>>
>> LGTM then
>>
>> On Wed, Apr 28, 2010 at 5:27 PM, John Grabowski <jrg@chromium.org> wrote:
>> > ALT is otherwise known as VKEY_MENU.
>> > Looking into Command I noticed that the posix keys don't match Mac
>> > NSEvent
>> > KeyCodes (or even HIToolbox keycodes).  Jay Civelli says these "common"
>> > POSIX keycodes come from WebKit.  If so, it seems unlikely a Command key
>> > would get dispatched down that far, but is possible.  So perhaps that's
>> > for
>> > a future CL.
>> > jrg
>> >
>> > On Tue, Apr 27, 2010 at 3:12 AM, Joe Mikhail <jmikhail@google.com>
>> > wrote:
>> >>
>> >> I think a command enum should be added to KeyboardCode typedef under
>> >> keyboard_codes_win & keyboard_codes_posix.  I also noticed that Shift
>> >> and Control are listed but not Alt, maybe that should be added too.
>> >>
>> >> On Fri, Apr 23, 2010 at 6:12 PM,  <jrg@chromium.org> wrote:
>> >> >
>> >> > http://codereview.chromium.org/1701006/diff/13002/15010
>> >> > File chrome/browser/automation/ui_controls.h (right):
>> >> >
>> >> > http://codereview.chromium.org/1701006/diff/13002/15010#newcode51
>> >> > chrome/browser/automation/ui_controls.h:51: bool command);
>> >> > On 2010/04/23 19:24:29, Nico wrote:
>> >> >>
>> >> >> Drive-by: Could this be enums instead of bools? Makes the call sites
>> >> >
>> >> > much more
>> >> >>
>> >> >> readable (could even be a mask then).
>> >> >
>> >> >> Obviously not in this CL; just a suggestion.
>> >> >
>> >> > That's a good idea; something like SHIFT|ALT would make a lot more
>> >> > sense.  As you suggested I'll consider that in a different CL; I'm
>> >> > trying to do minimal changes for Mac bringup and want to keep risk
>> >> > low.
>> >> >
>> >> > http://codereview.chromium.org/1701006/show
>> >> >
>> >
>> >
>
>

Powered by Google App Engine