qa

Open source Tool for Stress, Load and Performance testing [closed]

橙三吉。 提交于 2019-11-28 03:16:28
Possible Duplicate: How do you stress test a web application? Currently I have configured a project with cc.net, watin and nunit and now I want to do stress, load, and performance testing of my .net projects. Any idea which opensource tool should I use or cani achive it with same working tools and if yes then how? The service my company provides is not open source, but it's pretty cool and builds on open source. It's a load testing service that uses real browsers to play back load (as opposed to simulated HTTP/virtual users). We use Selenium as the playback engine, which should be somewhat

Git branching strategy integated with testing/QA process

折月煮酒 提交于 2019-11-28 02:38:55
Our development team has been using the GitFlow branching strategy and it has been great ! Recently we recruited a couple testers to improve our software quality. The idea is that every feature should be tested/QA by a tester. In the past, developers work on features on separate feature branches and merge them back to the develop branch when done. The developer will test his work himself on that feature branch. Now with testers, we start asking this Question On which branch should the tester test new features ? Obviously, there are two options: on the individual feature branch on the develop

Why is it bad to edit the UIMap.designer.cs file in a Visual Studio Coded UI test?

送分小仙女□ 提交于 2019-11-28 02:06:39
I have read that it is bad to edit the UIMap.Designer.cs file, however, I do not understand why. Per MSDN: "Do not modify the UIMap.designer.cs file directly. If you do this, the changes to the file will be overwritten." http://msdn.microsoft.com/en-us/library/dd380782.aspx Does anybody know what gets overwritten? Does this mean that if the UIMap.uitest file is edited after the Designer file, the designer file gets reversed? please help. The UIMap.designer.cs file is regenerated from the UIMap.uitest file after every edit (that is saved) to the UIMap.uitest file. There is a comment at the top

apollo及其他加密新概念

安稳与你 提交于 2019-11-28 01:13:24
炒鸡开心,了解到了新概念: apollo是一个分布式参数管理系统,其他系统的参数放在里面,然后我们在run configuration时会调用到它的参数 -Denv=dev 语句创建一个名为 env 的系统属性,并将其值设为 dev,这激活了开发配置。传递 -Denv=qa 将激活 QA 配置。 指定配置文件,服务运行于哪个环境。 基于openSSL的AES加密算法 CryptoJs前端加密 来源: https://blog.csdn.net/qq_24572475/article/details/94400713

Measuring time spent on GC in JVM

限于喜欢 提交于 2019-11-27 20:46:48
Suppose I am testing a Java server application. I know how much time it takes to finish the test. Now I'd like to know how much was spent on GC during that test. How can I do it? The simplest way is to use the -Xloggc and -XX:-PrintGCTimeStamps options when starting up your JVM. I think it prints out how long garbage collection takes. http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html I guess that when GC (Garbage Collector) is working the application stops and resumes when GC finishes I don't think that is a safe assumption. Are you sure the garbage collector is not

WebDriver executeAsyncScript vs executeScript

一曲冷凌霜 提交于 2019-11-27 17:42:55
What is the difference between executeAsyncScript and executeScript? How can i use event such as window.onload? I tried something like this ((JavascriptExecutor) driver).executeAsyncScript("window.onload = function() {alert('Hello')}"); But of course it did not work... So if anyone knows how it works please write an example eugene.polschikov I use executeScript . Example provided: String cssSelector="...blablabla..."; JavascriptExecutor js = (JavascriptExecutor) driver; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("document.getElementById(\'"+cssSelector +"\').click(

Black box vs White box Testing

非 Y 不嫁゛ 提交于 2019-11-27 10:14:43
Which type of testing would you say should be the emphasis (for testers/QAs), and why? A quick set of definitions from wikipedia: Black box testing takes an external perspective of the test object to derive test cases. These tests can be functional or non-functional, though usually functional. The test designer selects valid and invalid input and determines the correct output. There is no knowledge of the test object's internal structure. White box testing uses an internal perspective of the system to design test cases based on internal structure. It requires programming skills to identify all

Git branching strategy integated with testing/QA process

泪湿孤枕 提交于 2019-11-27 04:56:27
问题 Our development team has been using the GitFlow branching strategy and it has been great ! Recently we recruited a couple testers to improve our software quality. The idea is that every feature should be tested/QA by a tester. In the past, developers work on features on separate feature branches and merge them back to the develop branch when done. The developer will test his work himself on that feature branch. Now with testers, we start asking this Question On which branch should the tester

Why is it bad to edit the UIMap.designer.cs file in a Visual Studio Coded UI test?

孤街醉人 提交于 2019-11-26 23:38:15
问题 I have read that it is bad to edit the UIMap.Designer.cs file, however, I do not understand why. Per MSDN: "Do not modify the UIMap.designer.cs file directly. If you do this, the changes to the file will be overwritten." http://msdn.microsoft.com/en-us/library/dd380782.aspx Does anybody know what gets overwritten? Does this mean that if the UIMap.uitest file is edited after the Designer file, the designer file gets reversed? please help. 回答1: The UIMap.designer.cs file is regenerated from the

WebDriver executeAsyncScript vs executeScript

℡╲_俬逩灬. 提交于 2019-11-26 19:09:05
问题 What is the difference between executeAsyncScript and executeScript? How can i use event such as window.onload? I tried something like this ((JavascriptExecutor) driver).executeAsyncScript("window.onload = function() {alert('Hello')}"); But of course it did not work... So if anyone knows how it works please write an example 回答1: I use executeScript . Example provided: String cssSelector="...blablabla..."; JavascriptExecutor js = (JavascriptExecutor) driver; StringBuilder stringBuilder = new