Launcher class for Google Chrome browser.
| 313 | |
| 314 | |
| 315 | class Chrome(UnixBrowser): |
| 316 | """Launcher class for Google Chrome browser.""" |
| 317 | |
| 318 | remote_args = ['%action', '%s'] |
| 319 | remote_action = "" |
| 320 | remote_action_newwin = "--new-window" |
| 321 | remote_action_newtab = "" |
| 322 | background = True |
| 323 | |
| 324 | |
| 325 | Chromium = Chrome |
no outgoing calls
no test coverage detected