4
4
using OpenQA . Selenium . Appium ;
5
5
using OpenQA . Selenium . Appium . Android ;
6
6
7
- namespace Appium . Net . Integration . Tests . Android
7
+ namespace Appium . Net . Integration . Tests . Android . Session
8
8
{
9
- class SessionTest
9
+ class SessionTests
10
10
{
11
11
private AppiumDriver _driver ;
12
12
@@ -16,6 +16,7 @@ public void BeforeAll()
16
16
var capabilities = Env . ServerIsRemote ( )
17
17
? Caps . GetAndroidUIAutomatorCaps ( Apps . Get ( "androidApiDemos" ) )
18
18
: Caps . GetAndroidUIAutomatorCaps ( Apps . Get ( "androidApiDemos" ) ) ;
19
+ capabilities . AddAdditionalAppiumOption ( "desired" , capabilities . ToCapabilities ( ) ) ;
19
20
var serverUri = Env . ServerIsRemote ( ) ? AppiumServers . RemoteServerUri : AppiumServers . LocalServiceUri ;
20
21
_driver = new AndroidDriver ( serverUri , capabilities , Env . InitTimeoutSec ) ;
21
22
_driver . Manage ( ) . Timeouts ( ) . ImplicitWait = Env . ImplicitTimeoutSec ;
@@ -32,17 +33,17 @@ public void AfterAll()
32
33
}
33
34
34
35
[ Test ]
35
- public void GetDeviceUdidTest ( )
36
+ public void GetSessionDetailTest ( )
36
37
{
37
- var deviceUiid = _driver . SessionDetails [ "deviceUDID" ] . ToString ( ) ;
38
- Assert . That ( deviceUiid , Is . Not . Null ) ;
38
+ object deviceName = _driver . GetSessionDetail ( "deviceName" ) ;
39
+ Assert . That ( deviceName , Is . Not . Null ) ;
39
40
}
40
41
41
42
[ Test ]
42
43
public void GetDeviceDictionaryData ( )
43
44
{
44
- var dictionary = ( Dictionary < string , object > ) _driver . SessionDetails [ "desired" ] ;
45
- Assert . That ( dictionary . Count , Is . Not . EqualTo ( 0 ) ) ;
45
+ var dictionary = ( Dictionary < string , object > ) _driver . SessionDetails [ "desired" ] ;
46
+ Assert . That ( dictionary , Is . Not . Empty ) ;
46
47
}
47
48
}
48
49
}
0 commit comments