
Search In
Sanity testing is a software testing technique which is performed by the test team whenever a new build is received for testing. The main objective of this testing is to check if the section or code of the application is still working with a minor ch
Validation is an essential part of any web application. It is used to validate user input data. Before sending the user's input to different layers it must be validated.
Validation is of two types:-
1. CLIENT SIDE- client side validation is conside
Java code file is neccesary to run the particular project and sometimes java file contains 100 lines of code or more and in that case,there are more possibilities to get error(on in future,will get error).So in this case,Android provide a features to
AngularJS $apply comes into play when it invokes digest cycle to watch the scope model changes. Angular wraps the function call within the $scope.$apply. It means it executes a complete new life cycle. If the execution of the function is normal, the
Import
To access classes of one package in another package i.e use external classes without package qualification import feature is used.
The classes and interfaces of one package are accessible in another package using import feature.
$(“div[id^='box']”)
The above expression mean selecting all div elements whose id attribute start with box like box1, box2 etc.
Program to demonstrate above expression:
<html lang="en">
<head>
<script src="
$(“div[id*='box']”) in jQuery
The above expression mean selecting all div elements whose id attribute contain box word anywhere like firstbox, secondbox, box1, box2, middleboxexample etc.
Program to demonstrate above
$(“div[id$='box']”) in jQuery
The above expression mean selecting all div elements whose id attribute end with box like firstbox, secondbox etc.
Program to demonstrate above expression:
<html lang="en">
&
Estimation is a crucial feature which collaborate with every project. The same point cooperate to the testing assignment and also testing team or qa team that how many time do they needed to perform the testing operations.
For any project, s
Its really easy to create a login form by using cake php, for creating a form a user have to mention its type,action or url for pointing the form to the login() action to the controller, user would supply array like this. And for further fields they
