qa

Asked to fix bugs in a program, you find over 100 instances of

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 04:31:23
catch(Exception ex) { } What's the best way to proceed? Rip them all out and let it crash? Add logging code? Message boxes? This is in C#. It partly depends on how aggressive you can be. Is this app internal or external? Will your changes be deployed on live systems soon? Do you have specific bugs to fix, or is it just deemed to be a disaster? To reduce the bug count as quickly as possible, but with the most risk of serious damage, just remove all the catch blocks and let exceptions bubble up. For a much more delicate approach, just add logging to start with. You should also talk to whoever

Alternatives for automated web application front-end performance testing [closed]

大兔子大兔子 提交于 2019-12-03 03:54:23
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am looking for a way to regularly test the front-end performance of my web application. Specifically, I'm interested in the time it takes to resolve hostnames, to get responses from the servers, to download/render/execute resources, etc. I also want to measure these things when interacting with the application

Good QA / Testing Podcast [closed]

岁酱吖の 提交于 2019-12-03 03:02:01
Can anyone recommend a good Podcast for Quality Assurance / Tester folks. I find there is a wide variety on development but yet to find a good one for QA/Testing ( not from the developer point of view ). An active and weekly podcast that is currently being produced is Software Test Professionals "This Week in Software Testing" (TWiST) (http://softwaretestpro.com/). The site requires registration (Free), and then you can access the podcasts for 30 days at no charge. For the full archive and podcasts older than 30 days, Pro membership is required. Note; full disclosure, I am the producer of the

Peer Reviews or Pair Programming, or Both? [closed]

戏子无情 提交于 2019-12-03 01:55:35
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . Do you participate in code peer reviews or practice pair programming, or both? Have you been able to demonstrate an increase in software quality using these practices? What benefits and drawbacks have you observed in the course of practice? What hurdles to implementation did you face? In my own case, our development team pursued peer reviews of a number of different software

Difference between system testing and end-to-end testing

房东的猫 提交于 2019-12-03 01:21:41
问题 What is end-to-end testing, and what is the difference between it and system testing? They both seem the same and check the application as a whole. Definitions on the net are very confusing. 回答1: For me there isn't really a huge difference between the two and in some establishments the terms could be used interchangeably. Everywhere is different. I would try and explain it like so: System testing : You're testing the whole system i.e. all of it's components to ensure that each is functioning

VHDL - iSIM output uninitialised, doesn't change states

匿名 (未验证) 提交于 2019-12-03 00:59:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Hi I am a new Xilinx user and been having trouble with how to write stimulus/simulate in a test bench. My output(Kd) isn't giving me any sensible values and gives 'u' for the first few clock cycles before moving and staying at '1' throughout. Not sure if I have written the correct stimulus but hoping someone would help me out here! My VHDL code library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity codeFig2b is Port ( R0 : in STD_LOGIC; R1 : in STD_LOGIC; R2 : in STD_LOGIC; R3 : in STD_LOGIC; Kd : out STD_LOGIC; clock : in STD_LOGIC); end

Selenium Tutorials [closed]

让人想犯罪 __ 提交于 2019-12-03 00:52:06
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. I have been trying my hands on opensource tool selenium, i was actually looking for selenium video tutorials. I haven't found any good resources. I know there is documentation for selenium. But am more interested in video tutorials. Any help in suggesting

Unit tests by a QA Engineer

有些话、适合烂在心里 提交于 2019-12-02 23:51:40
As I understood from some Q&A sessions (see this and this ), unit tests should be written by developers. At my previous workplace we tried to give this task to a QA Engineer, but it didn't work. May be because it was already a middle of a project and he didn't have a chance to do a significant code coverage or may be because of another reason. Do you think it's a bad idea to free a developer from writing unit tests in a such way? Generally, I think it is a bad idea. Unit tests guide the developer to write modular (and therefore useful, reusable) code because their code needs to work with both

A selenium webdriver exception

浪子不回头ぞ 提交于 2019-12-02 23:12:25
Today, when i use the selenium webdrive, i got an error. my platform is mac osx . this is my exception log. ruby-1.9.2-p0 > Selenium::WebDriver.for :firefox Selenium::WebDriver::Error::WebDriverError: unable to bind to locking port 7054 within 45 seconds from /Users/Apple/.rvm/gems/ruby-1.9.2-p0/gems/selenium-webdriver-0.1.0/lib/selenium/webdriver/firefox/socket_lock.rb:48:in `lock' from /Users/Apple/.rvm/gems/ruby-1.9.2-p0/gems/selenium-webdriver-0.1.0/lib/selenium/webdriver/firefox/socket_lock.rb:29:in `locked' from /Users/Apple/.rvm/gems/ruby-1.9.2-p0/gems/selenium-webdriver-0.1.0/lib

【python基础】Linux环境下非root用户安装Python和第三方包

匿名 (未验证) 提交于 2019-12-02 21:56:30
软件版本与下载地址: python 3.7.3 使用edwetl用户为例: 1.安装Python 软件上传地址为~/software 软件安装地址~/Python/Python3.7.3 (1)前置安装包查看 rpm - qa | grep - i zlib rpm - qa | grep - i bzip2 rpm - qa | grep - i ncurses rpm - qa | grep - i readline rpm - qa | grep - i openssl rpm - qa | grep - i xz rpm - qa | grep - i sqlite rpm - qa | grep - i gdbm rpm - qa | grep - i tk rpm - qa | grep - i gcc #非常重要,而且单独安装非常麻烦需要1-2h (2)安装Python mkdir -p ~/software cd software 上传安装软件到software目录 xz -d Python-3.7.3.tar.xz tar -xvf Python-3.7.3.tar mkdir -p ~/Python/Python3.7.3 cd Python-3.7.3 来源:博客园 作者: 李子恒 链接:https://www.cnblogs.com/badboy200800