Bug Triage
Bug Triage is a traditional technique in which each bug/issue is prioritized on the basis of its severity, recurrence, uncertainty and other critical guideline. It enables testers to assign priority (high, medium, low) to bugs and rep...
I am writing this blog based on my own experience which I have learnt during the different phase of my career as a Digital Marketing Specialist. The term SEO keyword means a lot when it comes to promoting a clients business over t...
Android has Lint for checking errors in Java and XML code. Lint release with every new SDK.
But Lint is not find most type of bugs,exceptions and performance issue.
I found one plugin for static analysis tools to analysis android Java cod...
Test Planning and Control:-
The first phase of STLC is a combination of two activities, test planning and other one is test control. Test planning involves verifying the mission of testing and defining the objectives of testing. In order to spec...
Navigation drawer partially covers the screen when user swipes from left to right or eigter clicking on the menu icon at the top-left of the action bar. Navigation drawer is basically the hidden place where you can put navigation options.
acti...
To connect MongoDB with PHP you need to install MongoDB php driver. After you successful install MongoDB php driver, you need to create connection with MongoDB.
MongoDB default port is 27017. To connect with localhost and default port
$conn...
if you want to search a particular location using the google api so you can use this .
Step 1: Get the serverKey From the http://console.developers.google.com/ and write the server key as below.
Step 2: #define kGOOGLE_SERVER_KEY @"dsjfdsuiodfd...
Hi Sir,
I have just started to learn Android from the video series of "Android Apps Development Tutorial for Beginners (1) - 2015" but i am getting problem in launching AVD.
In the vedio series when they are launching AVD then "Bucky Phone" AVD...
This blog provide you simple Pull to refresh functionality with SwipeRefreshLayout.
First of all create new project.
Open xml layout file and create ListView/ScrollView/Gridview.
Wrap ListView/ScrollView/Gridview with "android.support.v...
It is a portion of the test plan that documents the tool and process used to record and track defects. It describes team resources involved in the defect tracking process and the categories used to prioritize defects.
Some of the sample catego...
Use below code line in .py file if you want to debug file in odoo
import ipdb; ipdb.set_trace();
And then restart server use this command in terminal and then restart your openerp- server with the debug option.
# openerp-server debug
Urgent Help....I have AWS cognito account but its not letting me create roles User: arn:aws:sts::241018845783:assumed-role/MY_ACCOUNT is not authorized to perform: iam:CreateRole on resource: arn:aws:iam::241018845783:role/Rolename..has anyone en...
Once the application is deployed, the application system remains in service for years or even for decades. During the service period the operational environment of the system is corrected or updated. Testing the application when it is deployed o...
Bug/Defect Summary Report
Defining a format to prepare a bug summary report is another prerequisite that ensures coverage of the minutest details of bugs to be identified during testing. A bug summary report contains detailed descriptions of t...
I want tocreate the layout just like this but i dont know how to create onChildClickListener so any programmer here please help me in creating this layout with OnChildClcikListener event.
Sir i want to use OnChildClickListener in my class which is extended to the ExpandableListView please help me out.
My code is as follow.
public class CustExpListview extends ExpandableListView implements ExpandableListView.OnChildClickListe...
I am working on an android app that displays an RSS News Feed. Something similar to CNN or other news app. So far the app is working great but I have one issue when the app us not connected to the internet the activity that the RSS News Feed is i...
Hi Readers!
Please find below the code that you can use to get view controllers stack from Navigation Controller in swift.
var vc:NSMutableArray = ((navigationController?.viewControllers as! AnyObject) as! NSArray).mutableCopy() as! NSMuta...
From 5.0 Lollipop version Android add some designing functionality with Material design. The one is Floating Label on Edit Text.
Before Material design EditText will hide the hint text after the first character is typed. But with the help of ...
What is Software?
Software is a collection of computer programs and related data that provide the instructions telling a computer what to do and how to do it. In other words, software refers to one or more programs and data stored in the comput...
Use Case Testing
Use case testing is a test design technique wherein test cases are designed to execute use cases or user scenarios. We can define a use case as a sequence of steps that describe the interactions between the actor(a user of the...
In Servlet we can also track the events using the Listeners, In below code script we have to track the events using the listeners. we have easily maintained the HttpSession events with the HttpSessionAttributeListener while we add, remove or repl...
What is Bug Isolation ?
Bug isolation or defect isolation is a process in which bugs are documented using distinct data fields mentioned in the bug report, such as Steps to Reproduce, input data and attachments.
In other words it is a process ...
XML-RPC is very useful in openerp. The XML-RPC protocol communicate to server and clients. XML-RPC is a very simple protocol which allows the client to do remote procedure calls. The called function, its arguments, and the result of the call are...
Introduction to Bug
The main purpose of performing testing is to identify bugs or defects in the software product. A software bug is an error, flaw, mistake, failure, or fault in a computer program that prevents it from behaving as intended. An...
Hello all,
I dont know what im doing wrong, i only want to check the username and password in the database if they exist show, you are logged in but if they do not exist to show.. you have no access to db
public void logIn(Student student) ...
Hello,
I would like to know if in WP PHP is possible to make something like that:
I need for the logged user a form which when compiled and submitted, send a mail to the admin with the all data of the user from db and the message he/she write. ...
To create two float fields in openerp you have to make third fields function and also this is a auto calculate in openerp.
Like:- field3 = field1 + field2
EXAMLE -
'field3' : fields.function(get_total, method=True, string='FIELD3',type='i...
As we all know that today being 1-10-2015 odoo version9 has been released, and our company is strongly looking out to partition the fundamental features with odoo9.
Odoo version 9 have loads of incipient features including the utilizer interface...
To create writer function in openerp you have to override the create and write methods, as show in example below.
Example:- use this code to write and override function in openerp
def write(self, cr, uid, ids, values, context = None):
re...
Difference between Bug Leakage & Bug Release:-
Bug Leakage:- Once the application is delivered for use, the problem of defect leakage may occur at the customer or end user side. After the release of the application to the client, if the e...
Sometimes we need to change default Character set of Schema. We can do this easily by using ALTER command.
Command:
ALTER SCHEMA database-name DEFAULT CHARACTER SET utf8 ;
Example:
ALTER SCHEMA `jeeyoh` DEFAULT CHARACTER SET utf8 ;...
In Spring we can call the stored Procedures using the SimpleJdbcCall class. we have use it with IN and OUT parameters. Firstly we need to create the procedure in database.
DELIMITER //
DROP PROCEDURE IF EXISTS `TEST`.`getRecord` $$
CREATE ...
Using Toolbar in place of ActionBar:-
Nowadays ActionBar is getting replaced by toolbar, so it is good to use or get handy with new feature of Android i.e "ToolBar" , Here is the way to use toolbar in your Android Activity.
Step 1:- set the...
White Box Testing coverage techniques in Software Testing
Coverage term is used in software testing. Testers used coverage term for measurement. They used this term (Coverage) to describe the degree to which the source code is tested. There ar...
Here is useful parameters used by multiple methods in OpenERP
cr: database connection (cursor)
uid: id of user performing the operation
ids: record ids to perform the operation on
context: optional dictionary of contextual parameters
For e...
Hello Friends, If you Want to call the method after your bean is initialize in spring you can use the following options.
Use the afterProprtiesSet method.
class MyClass implements InitializingBean {
public void afterPropertiesSet(...
I am writing code to make calls from the app.I am in India. It works fine for non toll free numbers. But for some number such as 18601231000 for BigBasket it is converting the number as +1(860)1231000 which when dialed comes as wrong number.But f...
Hello Friends, we need the session object to maintain the session in the web applications. we have to get the session object in Spring MVC by the following method:-
1:- Put the Session object with the method parameter. Session Object is declar...
Hey all,
My site when i check the source code has the
meta tags:
I cant change it from my theme files, not in the index.php checked all files even the style.css, and the meta tag wont be there and when i go to settings reading the option ther...
Sometimes we need to set and get value of href attribute of <a> tag from jQuery. We can do this very easily by using element.attr() function in jQuery.
Example: for example you declare an <a> as below:
<a id="element_url" hr...
To make user experience better by providing good focus on some events when volume is not relevant.
Android provide vibrator class to handling all this.
Below is the implementation. It vibrates just for 500 milliseconds.
First of all we ne...
Basically snackbar use to show message like a Toast but here the advantage is we have event to interact
in it.
It shows message on the bottom of the screen. And it will remove when we swipe off.
First of all add this in your gradle file
d...
any cakephp 3 developer here?
i am getting this error. my code is given in pic. i m inserting data into status table from users controller. how my controller will know abt status table in cakephp 3. help pls.
Error: Call to a member function ...
I am using a telerik editor control in my web app which by default has On Paste (Ctrl + V) event handler which open a dialog box. It is working in latest version of IE(Edge), Firefox and Chrome. But I need to make it support in IE 7 and 8. In IE ...
Hi,
i made a camera which is looking around in the game.i set the rotation. 20 seconds for a tour. When i enter play mode it is working. it is rotating in a normal way, but when i build the game, it is rotating maybe ten times in a second.Anyon...
In below Code you have to define the following log4j properties into your log.properties file:-
log4j.properties
# Global logging configuration
log4j.rootLogger = DEBUG, fileout
# Define the file appender
log4j.appender...
Hello,
I want to process a file.txt at the binary level by removing every 5th bit if it is equal to 1. Save the new processed binary file and repeat the process until it can no longer find any more 5th bits equal to 1, then save the final file...
To check partner balance in openerp follow these step given below
Step1-First Install Account module, to install Account module in openerp
Step2- Go to Account -> Reporting -> Generic Report -> Partners -> Partners Balance and save...
Step-1 Go to picking_invoice_relation module.
Step-2 invoice->invoice.py.
Step-3 After that used below code in invoice.py file.
if not isinstance(ids, types.ListType): # Ensure it is a list before proceeding.
ids = [ids] ...