Don't wanna be here? Send us removal request.
Link
Selenium is an open-source (free) automated testing framework for validating web-based applications across various browsers and platforms. Selenium Test Scripts can be written in a variety of programming languages, including Java, C#, Python, etc.
0 notes
Link
Step 1: Firstly, create a form using forms API. Create a class that will extend the “moodleform” class defined in “../lib/formslib.php”. Then override the definition() function of this class to include your form elements. Step 2: To browse the CSV file, use the file picker element of File API. require_once($CFG->libdir . '/formslib.php'); class bulkupload_form extends […]
0 notes
Link
Log in to your Salesforce account. Click Setup at the upper-right corner. Under the Build section in Salesforce, click Create and select Objects or you can search objects on the search bar To create a custom object, click New Custom Object. Enter the name of the Custom Object in Label, Plural Label, and Object Name.
0 notes
Link
The thought behind Salesforce Trailhead is that it guides you through how to learn Salesforce. It permits individuals with all degrees of Salesforce information to investigate and learn through a free Salesforce asset with no related knowledge required. In addition to the fact that it teaches you, however as you ‘level up’ you procure Salesforce
0 notes
Link
Step Functions is a serverless orchestration service that lets you combine AWS Lambda functions and other AWS services to build business-critical applications. Through Step Functions’ graphical console, you see your application’s workflow as a series of event-driven steps.
Workflow build using step functions includes the
Built in error handling
Parameter passing
0 notes
Link
This post is about editing office documents online in a web application interface for users. In this, you will require an office 365 license to use Microsoft graph APIs to edit documents through Onedrive.
To edit MS Word documents online, one of the quick approaches is saving the Word document to OneDrive and use the graph API to open document editing preview online.
0 notes
Link
When we are working with salesforce and s3, sometimes we need to download a file from the s3 bucket without using an HTTP request. We can achieve this by generating URLs from apex code. This is a signed URL to access any file of the bucket.
0 notes
Link
First, we need to install aws-sdk for PHP in the CakePHP project. To install it we can run the below command: composer require aws/aws-sdk-php Code to upload a file: Template Code: <?= $this->Form->create($product, ['enctype' => 'multipart/form-data']) ?> <fieldset> <legend></legend> <?php echo $this->Form->control('name'); echo $this->Form->control('file_url', ['type' => 'file']); ?> </fieldset> <?= $this->Form->button(__('Submit')) ?> <?= $this->Form->end() ?> […]
1 note
·
View note
Link
To install Openssl, we have to perform all steps with the root user. Please check the steps below:
sudo su (Do all operation with root user
0 notes
Link
Salesforce Sites enables you to form public websites and applications that are directly integrated into your Salesforce organization—without requiring users to log in with a username and password. You can publicly expose any information stored in your organization through a branded URL of your choice, and make the site’s pages match the view and feel of your company’s brand.
0 notes
Link
ML.NET is a cross-platform and open-source machine learning framework that consists of CLI (Command-Line Interface) and Model Builder (which is a simple UI tool ) to make it easy to build custom ML models using Automated Machine Learning (AutoML).
Using ML.NET, developers can integrate ML.NET with their existing tools to develop and infuse their applications with custom ML by creating custom ML models for some common scenarios like Image Classification, Sentiment Analysis, Sales Forecast prediction, Price Prediction, Customer segmentation, and more!
0 notes
Link
Azure SQL Database is a relational database provided as Database-as-a-Service, which is a part of Microsoft’s Cloud Infrastructure Platform, Microsoft Azure. It is also called SQL Azure. It provides database-backed managed service in the cloud with a petabyte-scale infrastructure. It is based on the latest version of the Microsoft SQL Server database engine.
0 notes
Link
In LWC, we have two ways to display the list of records in our web component for:each: for:item=��currentItem”: This is used to access the current item. for:index=”index”: used for accessing the current item’s index. key={uniqueId}: used to assign a unique ID to each item.
0 notes
Link
Scenario: We have a cakephp website. In one webpage say “Parent Page” of this website we have used iframe to show some content from another website/domain say “Child page”. From the “Child Page” that is inside the iframe we need to call javascript function of “Parent Page” webpage.
Initially, we have used window.parent.functionname() in javascript but it shows above error as both the website are different and it restricts the access due to security reasons.
0 notes
Link
This command will create a package name with com.myapp. Sometimes, if your application is created with the wrong package name or bundle id or you want to release your existing application with a different package name then you can change your package name by following the below steps. So, if you want to change your package name then you need to do some changes in the following files.
0 notes
Link
You can install it through pip using this command: Pip install pyinstaller Usage: pyinstaller path_to_your_script.py PyInstaller reads your Python program, analyzes all the imports it makes, and binds copies of those to the program. The user can launch the integrated application without having to install a Python interpreter or other modules.
0 notes
Link
Pagination is the default feature of Devextreme. The pagination divides your lots of records into pages and you can show numbers of records on a single page. Under pagination, Devextreme provides lots of features. As we can see in the following image In this article, we will cover how to customize “Page Size Selector” properties.
0 notes