Technical Solution
| 1
min read
Suppose you are working with OpenOffice Calc which requires lot of filters. And you want to replace a cell value with a digit to some text or value in another column. If this is the situation, then you can use a combination of IF() and ISNUMBER() to accomplish this task.
Drupal Technical
| 2
min read
When you test a Drupal website , most of the time you come across the task "Implement Pathauto module" in you website. So before you start testing, you have to build an idea of what is Pathauto module and how you can test it. Pathauto, as its name suggests automatically generates user friendly URLs. Pathauto depends on the core module path, which is used to rename URLs. So please go through the explanation below to understand it more precisely.
Technical Solution
| 2
min read
Suppose you forgot mysql password in the middle of a project and you tried almost all passwords and failed. So the only option left is to change the password. Then you can follow the below steps. Please note that you have to login as admin for doing this process.
Technical Solution
| 2
min read
Suppose you have a site to test which has the following functionality. There is a text field and an editor. When we enter text on the text field, immediately it should be displayed on the editor. To be more clear, after entering the text on the field then focusing out from it, the values should be displayed in the CK editor. And our intention is to automate it using Selenium. Lets check how this can be automated.
Drupal Technical
| 2
min read
Creating basic page is a general test must be done for all Drupal sites. And you are decided to do this through automated tool Selenium.The problem we face here is that you can't test inserting contents in the CK Editor by record and play. You have to insert Selenium commands for adding contents in the CK editor. Lets see how this can be handled.
Drupal Technical
| 2
min read
Suppose your Drupal projects handles products which can be purchased through online. And you are using Ubercart PayPal and Ubercart Payment modules to handle payments related to purchase. Either registerd or non registered user can buy the product. User can use paypal through two ways. "Can purchase through sandbox environment or Can purchase using credit card". So a tester can test the paypal functionality using both these ways. Here I am going to explain how can you test the purchasing functionality through Sandbox.
Drupal Technical
| 2
min read
Suppose you website sells products. Both anonymous user and registered user will be able to purchase products. And the registration process takes place in two ways.
Normal registration process.
When an anonymous user first time purchase a product, registration process will take place automatically.
Technical Solution
| 2
min read
Suppose you are working in a software enterprise and you have to combine different csv files to create a report. It is a tedious job if you try to combine it manually by copying and pasting. We can do it if there exists only 2 0r 3 files. But if we have to merge too many files, it is not time worthy. Here I am going to explain a simple step procedure to combine multiple csv files in linux operating system through command prompt.
Drupal Technical
| 3
min read
Suppose your Drupal projects handles products which can be shipped from one location to another and you are using Ubercart shipping quote' module to handle payment related to weight and shipping zones. Admin have the permission to add Zones rate and weight for each product, and the registered user's can buy the product. Here I am going to explain some of the test cases to be tested while testing this functionality.