(method: &str)
| 3791 | } |
| 3792 | |
| 3793 | fn is_allowed_inspector_proxy_method(method: &str) -> bool { |
| 3794 | matches!( |
| 3795 | method, |
| 3796 | "Inspector.getInfo" |
| 3797 | | "Runtime.ping" |
| 3798 | | "View.get" |
| 3799 | | "View.evaluateScript" |
| 3800 | | "View.getHierarchy" |
| 3801 | | "View.getProperties" |
| 3802 | | "View.setProperty" |
| 3803 | | "View.listActions" |
| 3804 | | "View.perform" |
| 3805 | ) |
| 3806 | } |
| 3807 | |
| 3808 | fn inspector_request_timeout(method: &str) -> Duration { |
| 3809 | if method == "View.getHierarchy" { |
no outgoing calls
no test coverage detected