Found 517 Articles for Selenium

How to take screenshot with Selenium WebDriver?

Debomita Bhattacharjee
Updated on 28-Aug-2020 06:09:49

3K+ Views

Whenever we encounter a failure during testing, it is a common nature to capture the screenshots wherever there is a deviation from the expected result. Thus it is considered a mandatory step to attach a screenshot for creating a bug.While automating a bunch of test cases of a considerable number, capturing screenshot is critical to infer why a test case has failed for both the development and testing team. As they debug the failures, going through the screenshot and conclude if the failure is due to script issue or defect in the application.Let us discuss which part of the page ... Read More

Can selenium handle Windows based pop up?

Debomita Bhattacharjee
Updated on 28-Aug-2020 06:04:55

4K+ Views

Selenium can handle Windows based pop up. There may be scenarios where a web page opens more than one window after performing some actions on it. The child windows that get opened may be a pop up containing some information or advertisement.Selenium uses the getWindowHandles () and getWindowHandle () methods to work with child windows. The getWindowHandles () method contains all the window handle ids of the opened windows. The window id handles are held in the form of Set data structure [containing data type as String].The getWindowHandle () method is used to store the window handle id of the ... Read More

Difference between selenium IDE, RC & WebDriver.

Debomita Bhattacharjee
Updated on 28-Aug-2020 06:01:09

5K+ Views

The differences between selenium IDE, RC & Webdriver are listed below :FunctionalitiesSelenium IDESelenium RCSelenium WebdriverRecord and playbackIt has the record and playback feature.It does not have a record and playback.It does not have a record and playback.ServerIt requires no server to start execution of test cases.It requires the server to start execution of test cases.It requires no server to start execution of test cases.BrowserIt can be used for testing only in Firefox.It can be used for testing in the majority of browsers.It can be used for testing in the majority of browsers including in headless mode.Object OrientedIt is based on ... Read More

Selenium WebDriver- Revisiting Important Features

Sharon Christine
Updated on 17-Jan-2020 12:47:23

223 Views

It’s been more than a decade since Selenium automation tool is here to automate our testing needs. As a free to use tool with dedicated community, it has lot of features to make our automation testing more reliable and comfortable. Seeing the growing popularity of Selenium webdriver, let’s revisit some of the important features of it, which proves why Selenium webdriver still stand out in the crowd.Key Features – Selenium WebDriverCompatibility with Many Web BrowsersSelenium WebDriver supports wide range of web browsers available in the market such as Firefox, Chrome, Internet Explorer, Opera, Safari and many more. Unless the other ... Read More

What is the future of Selenium Automation testing, as a career option?

Adiya Dua
Updated on 11-Dec-2019 12:44:44

324 Views

We are now living in a world of Cloud and Digital business. Application Development of almost all the platform is in boom. For providing utmost customer satisfaction, the application has to be seamless and bug-free.We have been living in the age of manual testing since very long. We have new requirements pitching in every now-and-then from the clients where there is either enhancement in the application or any modification. For testing these new requirements, we need to run the older test cases repeatedly to test if it is not affected by the new change. And we end up testing the ... Read More

Can I learn Selenium without knowing Java?

Adiya Dua
Updated on 11-Dec-2019 12:38:47

624 Views

This Question comes to many professionals who are not actually into core technical and want to pursue their career in Selenium Automation. The term coding makes the non-programmers a bit scare to even start off with something like automation. There is a perception that a non-programmer cannot excel in Automation, but it is only in head. Many deserving and capable manual testers shy away from Selenium just thinking that it require some special skills.There are various many languages in which Selenium Scripts are designed such as Python, Ruby, C#, JavaScript and Java is one such of them. Knowing the popularity ... Read More

How do you conduct function Testing?

Adiya Dua
Updated on 09-Oct-2019 08:48:35

147 Views

Functional TestingAll the user requirements as specified by the business should be well tested as a part of functional testing. Functional Testing demands Testing in the environment similar to that of client’s requirement. All the boundary conditions, negative scenario are accounted for. Each functionality of the application should be working well with minimal probability of any bug.Objective of Functional TestingThe basic requirement which is expected out of a well running application should be tested. The UI should be user friendly and easy to navigate. Error messages should pop-up in case any unwanted entry is entered.A bug free application with the ... Read More

What is the role of test automation in functional testing?

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

239 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

430 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

1K+ 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

Advertisements