git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
https://bugs.webkit.org/show_bug.cgi?id=144038
[WebKit-https.git]
/
Tools
/
Scripts
/
webkitpy
/
benchmark_runner
/
browser_driver
/
browser_driver.py
1
#!/usr/bin/env python
2
3
import abc
4
5
6
class BrowserDriver(object):
7
8
@abc.abstractmethod
9
def prepareEnv(self):
10
pass
11
12
@abc.abstractmethod
13
def launchUrl(self, url, browserBuildPath=None):
14
pass
15
16
@abc.abstractmethod
17
def closeBrowser(self):
18
pass