Navigation

    SOFTWARE TESTING

    • Register
    • Login
    • Search
    • Job Openings
    • Freelance Jobs
    • Services
    • Conferences
    • Courses
    1. Home
    2. Duquan
    3. Topics
    D
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Duquan

    • D

      What is the difference between Retesting and Regression Testing
      Manual Testing • manual testing regression testing retesting • • Duquan  

      2
      0
      Votes
      2
      Posts
      3
      Views

      Demir

      Retesting is testing this tast cases which failed and bugs were solved. Regression tests are test which check if added or changed functionality not caused faults in existing code. In your case retesting will be 50 in Module A and 40 in Module B. It is hard to say how many regression tests do you need but in such a situation (many test cases failed) probably you need to test all test cases. In general you do not test everything in regression.
    • D

      Count the number of items on the page
      Automated Testing • python selenium • • Duquan  

      2
      0
      Votes
      2
      Posts
      1
      Views

      P

      This is while driver.find_element_by_class_name ("unviewed") == True: always False. I shoul do it just like this: def look_for_element (self): driver = self.driver print len (driver.find_elements_by_class_name ("unviewed"))) Or better by xpath: def look_for_element (self): driver = self.driver print len (driver.find_elements_by_xpath ("// tr [contains (@class, 'unviewed') and @ data-rowkey]")))
    • 1 / 1