Skip to content

Instantly share code, notes, and snippets.

View prolificcoder's full-sized avatar

Satyajit Malugu prolificcoder

  • SoFi
  • Raleigh
View GitHub Profile
@prolificcoder
prolificcoder / builderror
Created June 18, 2014 01:20
xcode6 build error with ForceQuitUnresponsiveApps
CompileC /Users/smalugu/Library/Developer/Xcode/DerivedData/ForceQuitUnresponsiveApps-cxrjykfodbyelcencykxyxkquyil/Build/Intermediates/ForceQuitUnresponsiveApps.build/Release/ForceQuitUnresponsiveApps.build/Objects-normal/x86_64/main.o main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/smalugu/code/my-appium/submodules/ForceQuitUnresponsiveApps/ForceQuitUnresponsiveApps
export LANG=en_US.US-ASCII
/Applications/Xcode6-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=80 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-
@prolificcoder
prolificcoder / gist:ebd82081b47640a3cae2
Created December 10, 2014 23:36
tombstone file for crash
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'generic_x86/sdk_google_phone_x86/generic_x86:5.0.1/LSX66B/1630668:eng/test-keys'
Revision: '0'
ABI: 'x86'
pid: 1999, tid: 2396, name: Thread-175 >>> com.godaddy.mobile.android <<<
signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0xa2557fcc
eax a2558520 ebx aa215598 ecx a25584b0 edx 00000000
esi a25584d0 edi 00000001
xcs 00000073 xds 0000007b xes 0000007b xfs 00000107 xss 0000007b
eip a8dd0398 ebp a2558498 esp a2557fd0 flags 00210282
@prolificcoder
prolificcoder / gist:569893ecd6a8c84bcba7
Created November 9, 2015 19:13
Coding question- word histogram
create word histogram
@prolificcoder
prolificcoder / error
Created February 29, 2016 18:57
Gulp e2e test is not passing
Satyajits-iMac:appium-ios-driver malugus$ DEVICE=ios92 gulp e2e-test
[21:50:20] Using gulpfile ~/Code/appium-ios-driver/gulpfile.js
[21:50:20] Starting 'transpile'...
[21:50:26] Finished 'transpile' after 5.99 s
[21:50:26] Starting 'e2e-test'...
capabilities
1) should contain server details
@prolificcoder
prolificcoder / appium.log
Created March 14, 2016 23:04
appium log for scroll down in android
[HTTP] --> POST /wd/hub/session
[MJSONWP] Calling AppiumDriver.createSession() with args: [{"deviceName":"Android Emulator","deviceOrientation":"portrait","platformVersion":"5.1","platformName":"Android","app":"/Users/smalugu/code/gdm-an...
[Appium] Creating new AndroidDriver session
[Appium] Capabilities:
[Appium] deviceName: 'Android Emulator'
[Appium] deviceOrientation: 'portrait'
[Appium] platformVersion: '5.1'
[Appium] platformName: 'Android'
[Appium] app: '/Users/smalugu/code/gdm-android-investorapp/app/build/outputs/apk/investorapp-2.1.0-1-AutomationEnv-debug.apk'
[Appium] host: 'localhost'
@prolificcoder
prolificcoder / appium.log
Created March 14, 2016 23:41
error with 1.4.16
nfo: --> POST /wd/hub/session {"desiredCapabilities":{"deviceName":"Android Emulator","deviceOrientation":"portrait","platformVersion":"5.1","platformName":"Android","app":"/Users/smalugu/code/gdm-android-investorapp/app/build/outputs/apk/investorapp-2.1.0-1-AutomationEnv-debug.apk","host":"localhost","port":4723,"name":"android investor favorite tests @p0 should be able to see and click bid details"}}
info: Client User-Agent string: admc/wd/0.4.0
info: [debug] The following desired capabilities were provided, but not recognized by appium. They will be passed on to any other services running on this server. : deviceOrientation, host, port, name
info: [debug] No appActivity desired capability or server param. Parsing from apk.
info: [debug] No appPackage desired capability or server param. Parsing from apk.
info: [debug] Using local app from desired caps: /Users/smalugu/code/gdm-android-investorapp/app/build/outputs/apk/investorapp-2.1.0-1-AutomationEnv-debug.apk
info: [debug] Creating new appium session e63c4
enterPins: function (driver) {
return driver
.elementById(screens.pinScreen.title)
.should.eventually.exist
.elementsById(screens.numpad.key1).last()
.click()
.elementsById(screens.numpad.key2).last()
.click()
.then(function() {
//In android system alert comes after our custom alert and vice-versa in iOS
https://www.youtube.com/watch?v=vSdKZqJ73a8
https://docs.google.com/presentation/d/1E-8p41-3NZSZAFgAreSTTovNm0yZoRIA7byj0lQtqq8
https://firebase.google.com/docs/test-lab/
https://github.com/googlesamples/android-testing/tree/master/ui/espresso
https://google.github.io/android-testing-support-library/docs/index.html
https://firebase-community.slack.com
https://realm.io/news/chiu-ki-chan-advanced-android-espresso-testing
https://github.com/chiuki/espresso-samples
http://www.vogella.com/tutorials/AndroidTestingEspresso/article.html
public class MyFragment extends Fragment implements AppBarLayout.OnOffsetChangedListener {
//..... other code here
//Initialize appbar
private AppBarLayout appbar;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//.,.
appbar = (AppBarLayout) mainView.findViewById(R.id.appbar);
}
// Set the content descriptions based on the offset math
@Test
public void parallaxToolbarTest() {
//Go to the screen to perform the swipe action
//Verify that image is indeed collapsed
onView(withId(R.id.appbarLayout)).check(matches(withContentDescription(expandedImageContentDescription)));
//perform is sequential so click and swipeUp = drag up gesture
onView(withId(R.id.appbarLayout)).perform(click(), swipeUp());