| Index: chrome/test/webdriver/commands/find_element_commands.cc
|
| ===================================================================
|
| --- chrome/test/webdriver/commands/find_element_commands.cc (revision 79141)
|
| +++ chrome/test/webdriver/commands/find_element_commands.cc (working copy)
|
| @@ -37,6 +37,8 @@
|
| // TODO(jmikhail): The findElement(s) atom should handle this conversion.
|
| if (locator == "class name") {
|
| locator = LocatorType::kClassName;
|
| + } else if (locator == "css selector") {
|
| + locator = LocatorType::kCss;
|
| } else if (locator == "link text") {
|
| locator = LocatorType::kLinkText;
|
| } else if (locator == "partial link text") {
|
|
|