Found 871 Articles for Automation Testing

What is the role of test automation in functional testing?

Adiya Dua
Updated on 09-Oct-2019 08:43:51

116 Views

To ensure smooth, speedy and effective testing and delivery of a project, automation plays a crucial role. It becomes very essential in this digital business that continuous testing and delivery are ensured.Automation requires tools which control and compare the actual and the expected results. Repetitive execution as a part of Regression is also considered when Automation is talked about.While handling a huge project, automation plays a key role where few areas needs to be tested again and again in periodic interval. End-to-end testing result ensure the robust working of the application.When Automation is considers, it becomes very significant to identify ... Read More

When Should I use Selenium Grid?

Adiya Dua
Updated on 09-Oct-2019 08:39:51

300 Views

IntroductionAmong the four flavors of Selenium, Selenium Grid is one such flavor. The facility to run multiple tests on multiple machines, on multiple browsers simultaneously is made possible by Selenium Grid. It also allows running test cases on multiple browsers in parallel.Selenium Grid has 2 versions- older Grid 1 and older Grid 2. Old Grid 1 is obsolete now, hence Grid 2 is used.Selenium 2 is bundled with Selenium Server jar file. There is no need to install Apache Ant unlike Grid 1.How it worksSelenium Grid consists of hub and multiple nodes. Test runs on single machine called Hub and ... Read More

What are different selenium versions?

Adiya Dua
Updated on 06-Jul-2020 09:22:30

969 Views

Selenium 1 or known as RC (Remote Control) and Web Driver differ in many aspects but the key difference comes in the implementation layer or in simple words the architecture of both of them.As name suggest, RC is a Remote Control which works by taking the remote of the browser and then injects the automation code to be tested by injecting the custom scripts written.The Web Driver (known as Selenium 2) works on the browser directly and uses browsers in-built features to trigger the automation test written by tester. Web driver is the successor of Remote Control.The architecture of Selenium ... Read More

What is selenium web driver?

Adiya Dua
Updated on 04-Sep-2019 07:50:47

819 Views

Selenium Webdriver is a framework that allows automation testing. It allows testing across various browsers. It can execute multiple tests over multiple browsers on multiple OS. Web Driver makes it possible to write a test script in Linux and run it in Windows. There are multiple programming languages that are supported by Web Driver such as Java, Python, Ruby, .Net, PHP to create test scripts.Selenium Web driver is derived from −In Selenium2, integration of Web Driver was considered which was designed to address a few limitations of Selenium RC.Selenium was introduced with the following new features −It can test dynamic ... Read More

How does JSON wire protocol work?

Adiya Dua
Updated on 04-Sep-2019 15:05:56

591 Views

A24 JSON Wire protocol is the protocol in which is used when the web driver communicates with the browser. The working of the JSON is as below −In a server-client architecture, it is necessary that the client and server should be in sync and are able to receive and send the request and response.As the name suggests JSON(JavaScript Object Notation) is used to represent objects with a complex data structures. JSON wire protocol acts as a mediator between client libraries and Web Drivers. It sends transfers data between the client and the server on the web.The server doesn’t understand the ... Read More

Which version of Firefox is compatible with selenium

Adiya Dua
Updated on 07-Aug-2019 06:55:24

746 Views

Compatibility of Firefox with Selenium has always been a pain area. Before Selenium3, Firefox used to be the default browser for Selenium. But after Selenium3, by using GeckoDriver explicitly, we can initialize the script in FireFox.FireFox was fully supported only in previous versions i.e. v47 and earlier. Selenium WebDriver version 2.53 is not compatible with Mozilla FireFox version 47.0+. After v47.0, FireFox is provided with GeckoDriver. GeckoDriver is a proxy for using W3C WebDriver-compatible clients to interact with gecko-based browsers i.e. Mozilla FireFox.GeckoDriver acts a link between Selenium WebDriver tests and Mozilla FireFox Browser. It is a web browser engine ... Read More

What is Web Driver in Selenium?

Adiya Dua
Updated on 07-Aug-2019 06:47:04

3K+ Views

It is a web automation framework which allows us to execute test across various browsers. It can execute multiple tests over multiple browsers on multiple OS. WebDriver makes it possible to write a test script in Linux and run it in Windows. There are multiple programming languages which are supported by Web Driver such as Java, Python, Ruby, .Net, PHP to create test scripts.In Selenium2, integration of Web Driver was considered which was designed to address few limitations of Selenium RC.New Features introduced −It can test dynamic websites where the content of pages changes by a mouse click.By Web Driver, ... Read More

What is Maven in selenium?

Adiya Dua
Updated on 02-Jul-2020 13:16:52

2K+ Views

Maven is Yiddish Word which means Accumulator of Knowledge. Maven is a tool which is used for building and managing Java Based Projects. Basically to put it in simple words is a way to manage dependency for Java Based Project. Maven can be used when building project with POM (Page Object Model) when working on big projects.Below are the objectives which can be achieved with maven −Easier and Uniform build process.Providing quality project informationEasy DocmentationBest practices developmentManage the dependenciesLets understand them one by oneEasier and Unfirom Build Process −Maven provides pom.xml configuration files where all information such as construction directory, ... Read More

Who created Selenium?

Adiya Dua
Updated on 05-Aug-2019 11:23:22

141 Views

Selenium started originally as an internal tool at Thought Works in Chicago which was being developed by Jason Huggins in 2004. He was helped by Paul Gross and Jie Tina Wang and they built a Core mode as "JavaScriptTestRunner" for the testing of an internal Time and Expenses application (Python, Plone).They then thought of open-sourcing the test tool. ThoughtWorkers in various offices around the world picked up Selenium for commercial projects.Selenium RC was the first version of Selenium. In 2007, Huggins joined Google. Together with others like Jennifer Bevan, he continued with the development and stabilization of Selenium RC.In 2008, ... Read More

What is the difference between selenium and automation?

Adiya Dua
Updated on 02-Jul-2020 13:20:56

992 Views

Automation − It is the technique to run the test cases without human intervention. If we are sticking to the IT industry, Automation is not just confined to Automation of test scripts. Automation is the basic control system in which human intervention is expected the least. Various many tasks such as Data Migration, Decision making for AI, deploying the code automatically in the latest builds for testing etc.Goals −The ultimate goal of Automation is to re-run the regression flows without intervention of manual tester. Initializing some amount of human effort is required to design the scripts. But the end result ... Read More

Advertisements