header.navigation

    SOFTWARE TESTING

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

    chanisef

    @chanisef

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

    chanisef follow

    pages:account/best, chanisef

    • How to get logs with failed tests from the server (pytest)?

      I want to pull logs from the server, if the test ended up with FAILED status, tell me please what the signature of a function or fixture should look like, which will be called after each test and have information about its status.

      I run the script like this

      py.test -s -vv -l --alluredir allure / main.py
      
      global:posted_in, Automated Testing
      C
      chanisef

    pages:account/latest-posts, chanisef

    • RE: Dynamic variable for a value from array in Postman
      let jsonData = pm.response.json(); 
      pm.environment.set("test_name", jsonData.test3[0].id3);
      

      test3 is an array so you have to get the first object and then id3

      global:posted_in, API Testing
      C
      chanisef
    • RE: Select drop down value in Selenium

      Please Check the snippet.

      1. You can select by value
      from selenium import webdriver
      from selenium.webdriver.support.ui import Select
      driver = webdriver.Chrome(r'chromedriver.exe')
      driver.get('url')
      sct = Select(driver.find_element_by_id('idFormaPagamento'))
      
      sct.select_by_value('813640')
      
      1. You can select by index
      sct.select_by_index('1')
      
      global:posted_in, Automated Testing
      C
      chanisef
    • How to get logs with failed tests from the server (pytest)?

      I want to pull logs from the server, if the test ended up with FAILED status, tell me please what the signature of a function or fixture should look like, which will be called after each test and have information about its status.

      I run the script like this

      py.test -s -vv -l --alluredir allure / main.py
      
      global:posted_in, Automated Testing
      C
      chanisef
    • Why should I conduct usability testing?

      Can you guys explain why should I conduct usability testing? Is it worth to spend so much time and budget on this?
      My website is definitely looks similar to others but of course there is some difference

      global:posted_in, Usability Testing
      C
      chanisef