Navigation

    SOFTWARE TESTING

    • Register
    • Login
    • Search
    • Job Openings
    • Freelance Jobs
    • Companies
    • Conferences
    • Courses
    1. Home
    2. kalena
    K
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    kalena

    @kalena

    1
    Reputation
    29873
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    kalena Follow

    Best posts made by kalena

    • How do I create a loop within my selenium python script to select every option шт dropdown menu

      Im new to python, or coding for that matter... Currently I have a python script to select one option within the dropdown menu, but I would like my script to repeat each time and select the next option. Theres about 50 different options within the dropdown.

      l1  = "Hong Kong, China (Chrome, Canary, Firefox)"
      
      urlTextBox          = "url"
      dropdownOption      = "location"
      submitBtn           = ".//*[@kalena homeBtn             = ".//*[@id='nav']/li[1]/a"
      
      urlTextBoxElement = WebDriverWait(driver, 10).\
          until(lambda driver: driver.find_element_by_id(urlTextBox))
      
      dropdownOptionElement = WebDriverWait(driver, 10).\
          until(lambda driver: driver.find_element_by_id(dropdownOption))
      
      submitBtnElement = WebDriverWait(driver, 10).\
          until(lambda driver: driver.find_element_by_xpath(submitBtn))
      
      urlTextBoxElement.send_keys(webTeamPage)
      Select(dropdownOptionElement).select_by_visible_text(l1)
      submitBtnElement.click()
      time.sleep(3)
      homeBtnElement = WebDriverWait(driver, 10).\
          until(lambda driver: driver.find_element_by_xpath(homeBtn))
      
      posted in Automated Testing
      K
      kalena

    Latest posts made by kalena

    • Can a Samsung receive OTA updates normally with a systemless root?

      If a systemless root is done, will software updates still appear in settings/show up as a notification that there is a new update available?

      In case it does show up, can you download and install the update directly from the settings app even though the phone is rooted?

      From what I read, systemless roots are great because they allow you to update a rooted Android without unrooting it. Is this the case or have I misread something?

      Another thing I was curious about is if you root your Android via systemless root, would the phone status stay "official" or will it be "modified"/"custom"? And would a factory reset unroot a phone that has been rooted via systemless root?

      posted in Mobile Testing
      K
      kalena
    • RE: How can I prevent an app from interrupting audio playback of some other app?

      You can set TAKE_AUDIO_FOCUS permission of that app to ignore:

      appops set  TAKE_AUDIO_FOCUS ignore
      

      Using https://github.com/mirfatif/PermissionManagerX this can be done conveniently for any app:

      Disclosure: I'm the author of PMX.

      posted in Mobile Testing
      K
      kalena
    • RE: Install a fully functional Audible app on Android older than Android 6.0

      Audible 3.0.1 ( https://www.apkmirror.com/apk/audible-inc/audiobooks-from-audible/audiobooks-from-audible-3-0-1-release/ ) is the latest version that supports Android 4.1+ before it jumped to requiring a minimum Android version of Android 6.0.


      Some additional clarifications to the question:

      1. Since Audible 3.1.0 (March 25, 2021), the minimum Android version jumped to Android 6.0. This affects the app's visibility in https://play.google.com/store/apps/details?id=com.audible.application since incompatible apps will not be shown when searching directly from the app.
      2. The major version jump from 2.x to 3.x possibly indicates a breaking change including on the backend server-side, thus Audible apps before 3.0.0 might not work properly anymore.
      3. Last but not least, https://android.stackexchange.com/q/135711/44325 .
      posted in Mobile Testing
      K
      kalena
    • Does the native VPN client support IKEv1 as of Android 12?

      Is there any official documentation on what IPSec key exchange types are supported by the native Android 12 IPSec client (Racoon)? Specifically I’m interested in whether IKEv1 still works.

      I’m asking this because I’m thrown off by https://openwrt.org/docs/guide-user/services/vpn/strongswan/roadwarrior#for_android_clients which seems to indicate that as of v12, only IKEv2 modes are supported, killing off ISAKMP which has worked until v11. After spending some time searching for an official announcement or even just a feature list I came up empty handed.

      The screenshot on this Github issue: https://github.com/SoftEtherVPN/SoftEtherVPN/issues/1373 appears to confirm the removal of IKEv1 in v12.

      posted in Mobile Testing
      K
      kalena
    • Checking on Android OS for unauthorized access and the last connection of the charging cable to the phone

      The question arises, how can I view the last attempt to connect the charger to the phone and also track the last attempt to select passwords and attempts of unauthorized access and authorization on Android 5.0 and older? If yes, how can I implement the receipt of this information in the form of an application.

      posted in Mobile Testing
      K
      kalena
    • Facebook whitehat settings

      I am trying to enable Facebook whitehat to test the Facebook Android app. I went here:

      https://facebook.com/whitehat/researcher-settings

      I click "Enable the Whitehat Settings menu for your Facebook account". Then I click "Facebook Lite for Android". Then I go here:

      https://facebook.com/whitehat/researcher-settings/help

      Under "Enable setting from Facebook on Android", it says go to the "Bookmark menu". I don't know what that is, so I just click on the menu button on the top right corner. Then I click Settings, then Privacy. On the next screen, I don't see anything for Whitehat.

      posted in Mobile Testing
      K
      kalena
    • RE: How can I open the power menu in Android without pressing the power button?
      1. Go to Settings -> Accessibility -> Set Accessibility Menu to On.
      2. Press the Accessibility Menu icon, you should see among the icons, one dedicated to Power.
      3. Press it to show the Power menu.
      posted in Mobile Testing
      K
      kalena
    • Where in the Play Store can I see reaction from an app developer

      I recently sent private feedback to the developers of Microsoft Launcher (Beta), using the app's Feedback option (Options > Help and Feedback > Send feedback).

      Now, a few days later, I got a notification from the Play Store that the developer responded, but I can't find the response anywhere. What I do see is this:

      • Open Play Store

      • Click on my profile picture, and select Offers and Notifications

      • Select the Notifications tab. There's one entry that says: Reaction from the developer on your review: View the response, and update your review for Microsoft Launcher:

        Notificationss tab

      • Clicking on this entry opens the app's information page in the Play Store, but not my message, nor the developer's response.

        Info page

      Where can I find the developer's response? It seems to be integrated in Play Store?

      This https://android.stackexchange.com/questions/37397/where-can-i-see-if-a-developer-responded-to-my-comment-on-the-google-play suggests that an email is sent, but I can't find anything (not in the spam folder either)

      If it makes a difference, this is an old phone with Android 8.1

      posted in Mobile Testing
      K
      kalena
    • RE: Connecting app to the Facebook, but through a browser

      Unpack apk, search and replace the string and repack

      Also there's an app that can change link behaviour

      posted in Mobile Testing
      K
      kalena
    • Stop videos from readjusting phone volume on play

      Samsung Galaxy S10e

      If the volume is set to vibrate (all the way down), then a video is started, the video will automatically bring the volume back up to about 70%. How can this behavior be disabled? I would like to watch videos on mute without getting a blast of noise at the first second while I scramble to get the volume back down again.

      posted in Mobile Testing
      K
      kalena