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)
78
78
/// <param name="timeout">Desired page load timeout.</param>
79
79
public void SetPageLoadTimeout ( TimeSpan timeout )
80
80
{
81
+ pageLoadTimeout = timeout ;
81
82
if ( ! BrowserName . Equals ( BrowserName . Safari ) )
82
83
{
83
84
Driver . Manage ( ) . Timeouts ( ) . PageLoad = timeout ;
84
- pageLoadTimeout = timeout ;
85
85
}
86
86
}
87
87
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public void Should_BePossibleTo_AcceptAlert()
20
20
{
21
21
alertsForm . JsAlertButton . Click ( ) ;
22
22
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 ( ) ) ;
24
24
}
25
25
26
26
[ Test ]
You can’t perform that action at this time.
0 commit comments