Sunday, August 30, 2020

Mobile Testing - About Native, Mobile and Hybrid App

 Hi Folks,

During mobile testing, you heard about few words like one app, hybrid etc. Below are difference between them, hope it help you.

  1. Native App- native apps are those apps ... can be installed through google/apple store... accessible without internet, provide high performance as like built in app
  2. Mobile Web App -runs by mobile browsers chrome for android and safari for ios, same as desktop browser but make responsive to mobile browsers
  3. Hybrid app – combination of native and web app contained in a native container with low development time, downloadable from play store and compatible with most devices

 Cheers.

TJ


Saturday, August 8, 2020

Find a Filename from folder path

 Public Function fnFindFileFromPath(SearchPath, SearchFileName, dataSht) As String

    Dim StrFile As String

    'Debug.Print "in LoopThroughFiles. SearchPath: ", SearchPath

 '   StrFile = Dir(SearchPath & "\*" & SearchFileName)

    StrFile = Dir("D:\Test\")

     While (StrFile <> "")

      If InStr(StrFile, "Test") > 0 Then

         MsgBox "found " & StrFile

         Exit Function

      End If

     StrFile = Dir

    Wend

End Function