File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Aquality.Selenium/Browsers
tests/Aquality.Selenium.Tests/Integration Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,10 @@ public void SetImplicitWaitTimeout(TimeSpan timeout)
7878 /// <param name="timeout">Desired page load timeout.</param>
7979 public void SetPageLoadTimeout ( TimeSpan timeout )
8080 {
81+ pageLoadTimeout = timeout ;
8182 if ( ! BrowserName . Equals ( BrowserName . Safari ) )
8283 {
8384 Driver . Manage ( ) . Timeouts ( ) . PageLoad = timeout ;
84- pageLoadTimeout = timeout ;
8585 }
8686 }
8787
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public void Should_BePossibleTo_AcceptAlert()
2020 {
2121 alertsForm . JsAlertButton . Click ( ) ;
2222 AqualityServices . Browser . HandleAlert ( AlertAction . Accept ) ;
23- Assert . AreEqual ( "You successfuly clicked an alert" , alertsForm . ResultLabel . GetText ( ) ) ;
23+ Assert . AreEqual ( "You successfully clicked an alert" , alertsForm . ResultLabel . GetText ( ) ) ;
2424 }
2525
2626 [ Test ]
You can’t perform that action at this time.
0 commit comments