-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimized DevTools #7231
Optimized DevTools #7231
Conversation
optimized model parsing with Selenium Json capabilities.
Added some goodies here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, once again! This is great :)
A couple of nits, but we can address them in a later PR.
@@ -27,31 +27,47 @@ | |||
import java.util.StringJoiner; | |||
|
|||
public class Console { | |||
private Console() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want to keep the private constructors for utility classes
@@ -33,21 +34,23 @@ | |||
|
|||
public class Log { | |||
|
|||
private Log() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Utility classes (those that only contain static
helper methods and classes) should have private
constructors to stop people accidentally attempting to use the static methods as instance methods. Because "people"
Added test cases for Log and Console
Fixed some parsing bugs
modified to same convention we have in Network and Performance
Improved JavaDoc in Network
Usage of fromJson in all models
By placing an
X
in the preceding checkbox, I verify that I have signed the Contributor License Agreement