Skip to content

Commit 0e04467

Browse files
goderbauertbosch
authored andcommitted
docs(bench press): Added link to Chromedriver bug for reference
Closes angular#1923
1 parent 9fbb3ad commit 0e04467

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/benchpress/src/webdriver/chrome_driver_extension.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export class ChromeDriverExtension extends WebDriverExtension {
3838

3939
// See [Chrome Trace Event Format](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/edit)
4040
readPerfLog() {
41-
// TODO(tbosch): Bug in ChromeDriver: Need to execute at least one command
42-
// so that the browser logs can be read out!
41+
// TODO(tbosch): Chromedriver bug https://code.google.com/p/chromedriver/issues/detail?id=1098
42+
// Need to execute at least one command so that the browser logs can be read out!
4343
return this._driver.executeScript('1+1')
4444
.then( (_) => this._driver.logs('performance') )
4545
.then( (entries) => {
@@ -154,4 +154,4 @@ var _BINDINGS = [
154154
(driver) => new ChromeDriverExtension(driver),
155155
[WebDriverAdapter]
156156
)
157-
];
157+
];

0 commit comments

Comments
 (0)