This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CirclePage] fix MoreOption launching time issue (#178)
* [CirclePage] fix moreoption launching time issue * change nuget version and fix wrong IP * [UITest] change appium server URI
- Loading branch information
Showing
6 changed files
with
65 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Appium | ||
{ | ||
public static class Config | ||
{ | ||
#region fields | ||
public const string PLATFORM = "Tizen"; | ||
public const string APPIUM_SERVER_URI = "http://192.168.0.49:4723/wd/hub"; //Please insert your appium server address | ||
|
||
public const string APP_PACKAGE_NAME = "org.tizen.example.WearableUIGallery.Tizen.Wearable"; | ||
public const string APP_NAME = "org.tizen.example.WearableUIGallery.Tizen.Wearable-1.0.0.tpk"; | ||
public const string DEVICE_NAME = "emulator-26111"; | ||
|
||
public const int SPEEDX_EMUL_40 = -45; | ||
public const int SPEEDY_EMUL_40 = -35; | ||
public const int SPEEDX_EMUL_50 = -100; | ||
public const int SPEEDY_EMUL_50 = -100; | ||
public const int SPEEDX_GALAXY_WATCH = -80; | ||
public const int SPEEDY_GALAXY_WATCH = -60; | ||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters