Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes #22

Merged
merged 2 commits into from
May 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Appium Wizard/About.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Appium Wizard/ImportProfile.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Appium Wizard/ImportProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,5 +292,11 @@ private void ImportProfile_Shown(object sender, EventArgs e)
{
GoogleAnalytics.SendEvent(MethodBase.GetCurrentMethod().Name);
}

private void ImportProfile_HelpButtonClicked(object sender, System.ComponentModel.CancelEventArgs e)
{
MessageBox.Show("For iOS automation, you need to add valid profiles here. Please contact your iOS developer to get the profiles for your device UDID.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
GoogleAnalytics.SendEvent(MethodBase.GetCurrentMethod().Name);
}
}
}
4 changes: 2 additions & 2 deletions Appium Wizard/PairingCodePrompt.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,21 @@

<h2>Troubleshooting Guide</h2>

<button class="collapsible">Android Device not detecting</button>
<button class="collapsible">Android Device not detecting over USB</button>
<div class="content">
<p>Enable Developer options in your Android phone. Follow <a href="https://developer.android.com/studio/debug/dev-options" target="_blank">this link</a>.</p>
</div>

<button class="collapsible">Android Device not detecting over Wi-Fi</button>
<div class="content">
<p>Note : Android wireless works only for the device with Android 11 and above</p>
<ul>Solution 1 : Try turning off the Wireless debugging and turning it on again > Then Find devices in the app.</ul>
<ul>Solution 2 : Try turning off the device's Wi-Fi and turning it on again > Then Find devices in the app.</ul>
<ul>Solution 3 : Restart the device > Then Find devices in the app.</ul>
<ul>Solution 4 : Try turning off your windows machine's Wi-Fi and turning it on again > Then Find devices in the app.</ul>
<p>Still doesn't work? Please create an <a href="https://github.com/mega6453/AppiumWizard/issues/new/choose" target="_blank">issue here</a> with your device details and etc.</p>
</div>

<button class="collapsible">Unable to Start iPhone automation</button>
<div class="content">
<p>Enable Developer Mode in your iPhone and try again. Go to Settings->Privacy & Security->Developer Mode->Turn ON.</p>
Expand Down