<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Date

Set User-Defined Environment Variables
How to Set User-Defined Environment Variables in UFT? There are 3 ways to set up User-Defined Environment Variables in UFT: 1. Set up user-defined environment variables in test settings. Go to "Files &gt; Settings &gt; Environment &gt; User-Defined". Then click the "+" icon to add new en...
2018-01-24, 4179🔥, 0💬

Regular Expression Search and Replace
How to perform regular expression Search and Replace? To perform a regular expression pattern Search and Replace, you need to write a pattern string in regular expression language, and a replacement string. Then you need to apply the pattern search and replacement to the subject string with a tool, ...
2018-01-13, 4136🔥, 0💬

What Is sys.allocation_units
What Is sys.allocation_units view in SQL Server? sys.allocation_units is a system view in a SQL Server Database that contains information about each allocation unit of a data partition to a physical file. Each record in the sys.allocation_units table represents a single allocation of a data partitio...
2019-06-29, 4112🔥, 0💬

JMeter WebSocket Samplers - A Practical Guide from blazemeter
WebSocket is a protocol that provides a two-way communication channel between a web browser and a server over a single TCP connection. This protocol is becoming more and more popular each year and is supported by most of modern browsers. Unfortunately, Apache JMeter™ doesn’t support the WebSoc...
2017-12-09, 4044🔥, 0💬

POST Request to Send User and Password
How to call the POST request to send user name and password to the server? You can call the POST request to send user name and password to the server as shown in this tutorial. 1. Start JMeter on your computer and open "\fyicenter\Facebook-Login-Tes t-5.jmx".2. Add another HTTP Request sampler to "L...
2018-12-07, 3992🔥, 0💬

Use "while ..." Command in Selenium IDE for Chrome
How to Use "while ..." Command in Selenium IDE for Chrome? When using "while ..." Commands in test steps in Selenium IDE for Chrome, you need to remember the following: 1. Use "while ... end" to form a loop block of test steps. 2. Use JavaScript Boolean expression syntax to specify conditions to "wh...
2019-06-28, 3964🔥, 0💬

URL String Encoder
How to encode a URL string? URL encoding is an Internet standard defined in RFC1738 to protect special characters as part of user data included Web URL strings. URL encoding requires that all non-alphanumeric characters except "_" to be replaced with a percent (%) sign followed by two hex digits and...
2018-01-16, 3963🔥, 0💬

What Is UFT (Unified Functional Testing)
What Is Introduction of UFT (Unified Functional Testing)? Introduction of UFT (Unified Functional Testing) is software provided by Micro Focus for software Automated Functional Testing. Main features of UFT are: Cross-browser and multi-platform - UFT provides real device testing on top mobile platfo...
2018-01-20, 3945🔥, 0💬

Built-in Functions in JMeter
What are built-in functions in JMeter? Built-in functions are functions provided by JMeter that allows you access JMeter/JVM properties, manipulate data, and run scripts. Below is the syntax of calling a built-in function. ${__functionName(param1,param2 ,param3)}Note that if a parameter contains a "...
2018-01-27, 3885🔥, 0💬

JMeter Execution Order - PreProcessors
In what order PreProcessors are executed in JMeter? PreProcessors of all types are executed in the order described in the rules below: If a PreProcessor is attached to a Sampler, it is executed prior to the Sampler. If a PreProcessor is attached to a container (Test Plan, Thread Group, or Logical Co...
2018-08-14, 3879🔥, 0💬

Use Edge WebDriver with Microsoft Edge Driver
How to use Edge WebDriver with Microsoft Edge Driver? If you are using the Edge WebDriver with the Selenium Java API, you need to set the webdriver.edge.driver system property to the path to the Microsoft Edge Driver as shown below. 1. Make sure that you have Microsoft Edge WebDriver Server installe...
2020-01-29, 3866🔥, 0💬

Selenium WebDriver Client APIs
What Is Selenium WebDriver Client APIs? Selenium WebDriver Client APIs are libraries or modules provided by Selenium Org that allows you to access WebDriver communication interfaces from client applications in various programming languages. Selenium WebDriver Client APIs are also called "Selenium Cl...
2020-02-20, 3810🔥, 0💬

Error with Running soapui.bat
Why I am getting errors when running soapui.bat? Sometimes you may get errors when running the soapui.bat file directly as shown below: C:\fyicenter&gt;\fyicenter \SoapUI\bin\soapui.bat21:46:17,864 INFO [DefaultSoapUICore] initialized soapui-settings from [C:\Users\fyicenter\soapui-set tings.xml]...
2018-04-28, 3804🔥, 0💬

JMeter Execution Order - Samplers
In what order samplers are executed in JMeter? Samplers of all types are executed in the order described in the rules below: Samplers in the same thread group are executed sequentially by traversing the group tree branch from top to bottom. Samplers in a logical controller may not be executed depend...
2018-08-14, 3697🔥, 0💬

Clone SOAP Request in SOAP Test Case
How to clone a SOAP Request in a SOAP Test Case? I want create new SOAP request similar to an existing SOAP request. You can follow this tutorial to clone an existing SOAP request to save time and avoid mistake when creating new test steps. 1. Open NDFD-soapui.xml project in SoapUI. 2. Right-click o...
2018-03-31, 3647🔥, 0💬

Testing Area
What is test testing area for? The testing area is provided to allow visitors to post testing comments.
2021-08-01, 3615🔥, 72💬

💬 2023-11-03 Ajay: asdd

💬 2023-11-02 hggfgh: gghf

💬 2023-10-04 test: test

(More comments ...)

Base64 Encoder
How to perform Base64 Encoding? Base64 encoding is designed to convert any digital data into 64 printable characters as described in RFC 2045. Base64 encoding is mainly used to protect data be transferred safely over the Internet. Email attachments are usually associated with the following headers t...
2018-03-28, 3605🔥, 0💬

URL String Decoder
How to decode a URL string? URL encoding is an Internet standard defined in RFC1738 to protect special characters as part of user data included Web URL strings. URL encoding requires that all non-alphanumeric characters except "_" to be replaced with a percent (%) sign followed by two hex digits and...
2018-01-16, 3565🔥, 0💬

Add/Delete Steps in Selenium IDE for Chrome
How to Add and Delete Test Steps in Selenium IDE for Chrome? I want modify test steps manually instead of regenerating them from Chrome browser navigation recording. If you want to delete a step from a test or add a step to a test in in Selenium IDE for Chrome manually, you can follow this tutorial....
2019-09-04, 3564🔥, 0💬

Run JMeter Proxy Server
How to Run JMeter Proxy Server? I have the "HTTP(S) Test Script Recorder" component configured. If you have the "HTTP(S) Test Script Recorder" component configured, you can follow this tutorial to Run JMeter Proxy Server. 1. Run JMeter and open "Recording-Controller-HTTP-Pro xy.jmx".2. Open "HTTP(S)...
2018-02-01, 3559🔥, 0💬

Use "if ..." Command in Selenium IDE for Chrome
How to Use "if ..." Command in Selenium IDE for Chrome? When using "if ..." Commands in test steps in Selenium IDE for Chrome, you need to remember the following: 1. Use "if ... end" to form a single branch of test steps. 2. Use "if ... else ... end" to form two branches of test steps. 3. Use "if .....
2019-05-30, 3556🔥, 0💬

JMeter Execution Order - Assertions
In what order Assertions are executed in JMeter? Assertions of all types are executed in the order described in the rules below: If an Assertion is attached to a Sampler, it is executed after all PostProcessors of the Sampler. If an Assertion is attached to a container (Test Plan, Thread Group, or L...
2020-07-07, 3553🔥, 2💬

💬 2020-06-25 FYIcenter.com: @jaro, you are right. We will fix the typo.

💬 2020-06-19 jaro: Hi, should be sampler A and sampler Z exchanged?

Data Lookup Tools
Where to find Data Lookup Tools? FYIcenter.com has prepared a number of Data Lookup Tools for you: Show My IP Address and Host Name Show My Browser Identification Information Show My Browser Request Headers Local Time of World Largest Cities Exchange Rates of World Currencies   ⇒ Show My IP Address ...
2017-12-25, 3539🔥, 0💬

Data Encoders, Decoders and Converters
Where to find data Encoders, Decoders and Converters? FYIcenter.com has prepared a number of data Encoders, Decoders and Converters for you: Binary to Hex Encoder Hex to Binary Decoder Base64 Encoder Base64 Decoder UUEncode (Unix-to-Unix Encode) UUDecode (Unix-to-Unix Decode) URL String Encoder URL ...
2018-01-07, 3508🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Date