header.navigation

    SOFTWARE TESTING

    • register
    • login
    • search
    • Job Openings
    • Freelance Jobs
    • Services
    • Conferences
    • Courses
    1. home
    2. Kadir
    K
    • profile
    • following
    • followers
    • topics
    • posts
    • best
    • header.groups

    Kadir

    @Kadir

    0
    reputation
    5
    posts
    1
    profile_views
    0
    followers
    0
    following
    joined lastonline

    Kadir follow

    pages:account/best, Kadir

    has_no_posts

    pages:account/latest-posts, Kadir

    • How to Change a html line code with python?

      I'd like to change this line:

      <button _ngcontent-c19="" class="blue-button-disabled" disabled="">CONTINUE </button>
      

      to this:

      <button _ngcontent-c19="" class="blue-button">CONTINUE </button>
      

      all that I could do is change the class name from blue-button-disabled to blue-button, but I couldn't remove disabled=""

      I used this code to achieve that result:

      driver.execute_script("arguments[0].setAttribute('class','blue-button')", element)
      
      global:posted_in, Automated Testing
      K
      Kadir
    • RE: Webdriver chrome is not working when express VPN is connected

      Try this, I have the same issue with surfshark but this fixed. install webdriver_manager using pip. with webdriver_manager there is no need to download chromedriver it automatically detects your chrome version.

      from selenium.webdriver.chrome.options import Options
      from selenium import webdriver
      from webdriver_manager.chrome import ChromeDriverManager
      options = webdriver.ChromeOptions()
      driver = webdriver.Chrome(ChromeDriverManager().install(),options=options)
      
      global:posted_in, Automated Testing
      K
      Kadir
    • Scrolling to the next element in Selenium (Python)

      I'm trying to make a facebook commenting bot in Selenium in Python. I need to scroll down to the text box to make the comment and I have this line of code:

      ActionChains(driver).move_to_element(driver.find_element_by_id('my-id')).perform()
      

      When I run it again it scrolls to the same textbox and I need to scroll to the next one. Is there any way to do it?

      global:posted_in, Automated Testing
      K
      Kadir
    • How detailed should my manual test case be?

      I'm testing a business app and my boss insists that my test cases are too detailed and bring no value to the company. For UI and functionality testing I was just testing every text box, menu, etc., and making a proper test case in MTM.

      How much detail should I include in test cases? How detailed should they be?

      global:posted_in, Manual Testing
      K
      Kadir
    • iOS manual testing on Testdroid

      I just wanted to know if I can do manual testing of iOS (.ipa) app on Tesdroid. As in upload the .ipa and install it on a cloud iPhone to perform manual testing?

      global:posted_in, Mobile Testing
      K
      Kadir