qa

How can we measure the Server Processing Time,Page Loading Time,Page Rendering Time and Page Size from Apache Jmeter

倖福魔咒の 提交于 2019-12-06 05:18:33
问题 How can I measure the following points Server Processing Time Page Loading Time Page Rendering Time Page Size from Apache Jmeter? Is there any suitable listener to measure all these points? 回答1: With aggregate report Or csv / xml results you get nearly all the infos you can regarding response times BUT: Server Processing Time: you cannot get this one as jmeter act on client side it includes network time, so you need to add some profiling data or look at access logs Page Loading Time : if it's

How can I run Nightwatch tests in a specific order?

旧城冷巷雨未停 提交于 2019-12-05 18:28:06
问题 I have several tests which test the UI and also serve to create data along the way. A separate set of tests rely on this data, meaning that these must run only after the first set have run. I know about running a group of them, or running them with tags, but how can I run them in a specific order? 回答1: Nightwatch will run each test within a particular file in order, so one (naive) solution would be to put every test in the same file, in the order you want them to run. This will get unwieldy

Selenium Web driver wait for long time

这一生的挚爱 提交于 2019-12-05 01:24:59
问题 Can I wait with Selenium Web Driver for a long time period? Even though I can set implicitlywait command like below, it doesn't wait the time that I've given. driver.manage().timeouts().implicitlyWait(5, TimeUnit.MINUTES); Is there anything wrong here? In my case, I need to execute one test case and wait for 4 minutes and then execute the next test case. I use Java here. 回答1: Considering you need to wait for a particular element i'd do something in the lines of a ExplicitWait like below.

QA to dev ratio [closed]

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-04 21:35:51
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago . We have a pretty complex Java system which includes a few back-end tiers including a database and a proprietary Swing front-end. There are back-end APIs to which external parties can attach that mimic our front-end. There are approximately 5 silos within our org that share

How can QA test multiple features at once with feature branching in Gitflow workflow?

孤人 提交于 2019-12-04 18:23:41
If developers were to work on different branches for different features I understand that they can give a QA build from the feature branch and once it is tested it can be merged with "develop". But if the QA team is fairly large and can test multiple features at once how can they be given a build containing features that are residing in different branches? VonC But if the QA team is fairly large and can test multiple features at once how can they be given a build containing features that are residing in different branches? That would be by: setting up an integration branch, reset to the latest

Selenium WebDriver waitForElementPresent when Javascript refreshes

寵の児 提交于 2019-12-04 17:44:38
I have a Selenium script (Python) using WebDriver that does WebDriverWait(driver, long_wait).until( EC.presence_of_element_located(find_element(driver, selector)) ) However the page the script is "waiting" for the element to appear on is using Javascript to refresh itself. The page refreshes itself every second and a "success" element will appear after a few refreshes. It appears upon refresh the above command exits however I want it to wait indefinitely (or for a long period) even across client/browser refreshing. Is this possible with WebDriver? Edit: Here's the body of the method. Ignore my

QA Process - Best Ideas

天大地大妈咪最大 提交于 2019-12-04 15:57:41
问题 What are the best processes with for Quality Assurance (aside from testing)? Do you use code reviews, code profilers? Do you use a QA Standards document, or just eyeball code? Also how do you provide feedback to the developers? What do YOU do for QA? 回答1: Unless you have a very low issue rate, use a database to track issue. Make the QA process interesting by getting developers to do TDD (Test-Driven Development). It's good for them, and it gets rid of the stupid bugs. Automate tests. Get QA

Selenium Tutorials [closed]

这一生的挚爱 提交于 2019-12-04 08:46:38
问题 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. Closed 7 years ago . I have been trying my hands on opensource tool selenium, i was actually looking for selenium video tutorials. I haven't found any good

What is a Swamp Diagram?

余生颓废 提交于 2019-12-04 08:33:10
Someone told me about swamp diagrams explaning that they were useful to predict code quality by measuring the rate of incoming defects and outgoing fixes on a given product. Unfortunately, I am unable to find additional information on those diagrams and I am wondering if it is a jargon term specific to one company. Can you explain what a swamp diagram is? You can see an example of a "swamp diagram" in this article about the " THE COMMISSIONING AND PERFORMANCE CHARACTERISTICS OF CESR ", page 5 of the pdf or p. 1988 of that document. (CESR is the Cornell Electron Storage Ring, designed to

C++ Jenkins QA Stack / Tools

纵饮孤独 提交于 2019-12-04 07:27:12
问题 We are currently in the process of building a QA stack for you C++ development . We already have multiple Jenkins instances running and made very good experiences with the CI server in combination with other languages like java and php. What I'm asking for are pointers to tool chains that can be used for C++ Development with Jenkins. More specific (java / php examples in braces): A unit testing framework that test and produces coverage reports (jUnit / phpUnit) A coding guidelines checker