@@ -12,8 +12,8 @@ public class DevToolsPerformanceTest : DevToolsTestFixture
1212 [ IgnoreBrowser ( Selenium . Browser . Safari , "Safari does not support Chrome DevTools Protocol" ) ]
1313 public async Task EnableAndDisablePerformance ( )
1414 {
15- var domains = session . GetVersionSpecificDomains < V109 . DevToolsSessionDomains > ( ) ;
16- await domains . Performance . Enable ( new V109 . Performance . EnableCommandSettings ( ) ) ;
15+ var domains = session . GetVersionSpecificDomains < V110 . DevToolsSessionDomains > ( ) ;
16+ await domains . Performance . Enable ( new V110 . Performance . EnableCommandSettings ( ) ) ;
1717 driver . Url = simpleTestPage ;
1818 await domains . Performance . Disable ( ) ;
1919 }
@@ -24,7 +24,7 @@ public async Task EnableAndDisablePerformance()
2424 [ IgnoreBrowser ( Selenium . Browser . Safari , "Safari does not support Chrome DevTools Protocol" ) ]
2525 public async Task DisablePerformance ( )
2626 {
27- var domains = session . GetVersionSpecificDomains < V109 . DevToolsSessionDomains > ( ) ;
27+ var domains = session . GetVersionSpecificDomains < V110 . DevToolsSessionDomains > ( ) ;
2828 await domains . Performance . Disable ( ) ;
2929 driver . Url = simpleTestPage ;
3030 await domains . Performance . Disable ( ) ;
@@ -36,13 +36,13 @@ public async Task DisablePerformance()
3636 [ IgnoreBrowser ( Selenium . Browser . Safari , "Safari does not support Chrome DevTools Protocol" ) ]
3737 public async Task SetTimeDomainTimeTickPerformance ( )
3838 {
39- var domains = session . GetVersionSpecificDomains < V109 . DevToolsSessionDomains > ( ) ;
39+ var domains = session . GetVersionSpecificDomains < V110 . DevToolsSessionDomains > ( ) ;
4040 await domains . Performance . Disable ( ) ;
41- await domains . Performance . SetTimeDomain ( new V109 . Performance . SetTimeDomainCommandSettings ( )
41+ await domains . Performance . SetTimeDomain ( new V110 . Performance . SetTimeDomainCommandSettings ( )
4242 {
4343 TimeDomain = "timeTicks"
4444 } ) ;
45- await domains . Performance . Enable ( new V109 . Performance . EnableCommandSettings ( ) ) ;
45+ await domains . Performance . Enable ( new V110 . Performance . EnableCommandSettings ( ) ) ;
4646 driver . Url = simpleTestPage ;
4747 await domains . Performance . Disable ( ) ;
4848 }
@@ -54,13 +54,13 @@ await domains.Performance.SetTimeDomain(new V109.Performance.SetTimeDomainComman
5454 [ IgnoreBrowser ( Selenium . Browser . Safari , "Safari does not support Chrome DevTools Protocol" ) ]
5555 public async Task SetTimeDomainsThreadTicksPerformance ( )
5656 {
57- var domains = session . GetVersionSpecificDomains < V109 . DevToolsSessionDomains > ( ) ;
57+ var domains = session . GetVersionSpecificDomains < V110 . DevToolsSessionDomains > ( ) ;
5858 await domains . Performance . Disable ( ) ;
59- await domains . Performance . SetTimeDomain ( new V109 . Performance . SetTimeDomainCommandSettings ( )
59+ await domains . Performance . SetTimeDomain ( new V110 . Performance . SetTimeDomainCommandSettings ( )
6060 {
6161 TimeDomain = "threadTicks"
6262 } ) ;
63- await domains . Performance . Enable ( new V109 . Performance . EnableCommandSettings ( ) ) ;
63+ await domains . Performance . Enable ( new V110 . Performance . EnableCommandSettings ( ) ) ;
6464 driver . Url = simpleTestPage ;
6565 await domains . Performance . Disable ( ) ;
6666 }
@@ -71,12 +71,12 @@ await domains.Performance.SetTimeDomain(new V109.Performance.SetTimeDomainComman
7171 [ IgnoreBrowser ( Selenium . Browser . Safari , "Safari does not support Chrome DevTools Protocol" ) ]
7272 public async Task GetMetricsByTimeTicks ( )
7373 {
74- var domains = session . GetVersionSpecificDomains < V109 . DevToolsSessionDomains > ( ) ;
75- await domains . Performance . SetTimeDomain ( new V109 . Performance . SetTimeDomainCommandSettings ( )
74+ var domains = session . GetVersionSpecificDomains < V110 . DevToolsSessionDomains > ( ) ;
75+ await domains . Performance . SetTimeDomain ( new V110 . Performance . SetTimeDomainCommandSettings ( )
7676 {
7777 TimeDomain = "timeTicks"
7878 } ) ;
79- await domains . Performance . Enable ( new V109 . Performance . EnableCommandSettings ( ) ) ;
79+ await domains . Performance . Enable ( new V110 . Performance . EnableCommandSettings ( ) ) ;
8080 driver . Url = simpleTestPage ;
8181 var response = await domains . Performance . GetMetrics ( ) ;
8282 var metrics = response . Metrics ;
@@ -92,12 +92,12 @@ await domains.Performance.SetTimeDomain(new V109.Performance.SetTimeDomainComman
9292 [ IgnoreBrowser ( Selenium . Browser . Safari , "Safari does not support Chrome DevTools Protocol" ) ]
9393 public async Task GetMetricsByThreadTicks ( )
9494 {
95- var domains = session . GetVersionSpecificDomains < V109 . DevToolsSessionDomains > ( ) ;
96- await domains . Performance . SetTimeDomain ( new V109 . Performance . SetTimeDomainCommandSettings ( )
95+ var domains = session . GetVersionSpecificDomains < V110 . DevToolsSessionDomains > ( ) ;
96+ await domains . Performance . SetTimeDomain ( new V110 . Performance . SetTimeDomainCommandSettings ( )
9797 {
9898 TimeDomain = "threadTicks"
9999 } ) ;
100- await domains . Performance . Enable ( new V109 . Performance . EnableCommandSettings ( ) ) ;
100+ await domains . Performance . Enable ( new V110 . Performance . EnableCommandSettings ( ) ) ;
101101 driver . Url = simpleTestPage ;
102102 var response = await domains . Performance . GetMetrics ( ) ;
103103 var metrics = response . Metrics ;
0 commit comments