Category: Salesforce
Selenium | Opening and closing browser tabs with Key controls
We can use Robot class to open and close tabs in Selenium but we also have the Key_Control concept. These are keyboard shortcuts to open and close the tabs in browser : Ctrl+t (Open New tab) Ctrl+w (Close tab) We
Salesforce | Passing data via Javascript to Apex Controller
Some situations occur when we become unable to pass the data from visualforce page to apex controller directly. For example: Suppose you have three divs (todoDiv, doingDiv, doneDiv) that are showing some tasks through the List from apex controller. It
Salesforce | System.Callout Exception: Unauthorized End Point
I tried to send REST request to my server on click of a custom button in Salesforce. It shows me “unauthorized end point exception”. Solution : To resolve this issue we need to add the server address as a remote
Selenium Locators
To locate elements in Selenium WebDriver, we can use findElement() for single element and findElements() to locate a list of elements satisfying the search criteria. List of different ways in which both the methods can be used are given below:
How to install and use command line tools in Heroku
What is Heroku Command Line: The heroku command-line tool is an interface to the Heroku Platform API and includes support for things like creating/renaming apps, running one-off dynos, taking backups, and configuring add-ons. It is generally installed in your local
Java | Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter
Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter in java 6 and 7. Solution: javax.xml.bind.Datatypeconverter class is the built in class inside JRE. We don’t need any third party library as we need in case of Cipher encoding/decoding method. javax.xml.bind.DatatypeConverter.printBase64Binary(byte[]) encodes a byte[] array into
CakePHP Security Component
CakePHP Security Component is very useful and provides an easy way to enable very tight security in our application: 1. It can restrict which HTTP methods our application accepts. 2. It provides Form Tampering Protection. 3. It can force to
Jquery | How to create/edit Jquery Datatable dynamically
How to create/edit Jquery Datatable dynamically? HTML code: <div class=”col-md-12 col-sm-12 col-xs-12″> <table id=”table”> <tbody> <tr> <th>Rules</th> </tr> </tbody> </table> </div> <button id=”go”>Go</button> Here is the javascript function: function addData() { var data=[this array contains all the values that we
Selenium Webdriver script | Open new browser tab and switch between tabs
In Selenium Webdriver script how to open a new browser tab and then switch between first browser tab and 2nd browser tab? Solution: This is the script to achieve it, go through comments in the code to understand how the
