Found 519 Articles for Selenium

Scroll Element into View with Selenium.

Debomita Bhattacharjee
Updated on 31-Oct-2023 03:48:50

22K+ Views

We may need to perform action on an element which is not present in the viewable area of the page. We need to scroll down to the page in order to reach that element.Selenium cannot perform scrolling action directly. This can be achieved with the help of Javascript Executor and Actions class in Selenium. DOM can work on all elements on the web page with the help of Javascript.Selenium can execute commands in Javascript with the help of the execute_script() method. For the Javascript solution, we have to pass true value to the method scrollIntoView() to identify the object below ... Read More

How to take screenshot with Selenium WebDriver?

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

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

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

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

HP UFT Vs. Selenium – A Review

karthikeya Boyini
Updated on 20-Jan-2020 13:07:47

228 Views

When we are talking about test automation, we automatically think about the tools, which are available to ease the testing task. These tools can be categorized under two major categories – freeware and licensed tools. The freeware tools are the open source tools available free of cost over the internet. The reliability of such tools is pretty less. However, when we talk about licensed tools, these tools are paid tools which have licensed versions. If you want to use these tools, then you have to pay the price for the license.Here, in this article, we are going to discuss about ... Read More

Selenium WebDriver- Revisiting Important Features

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

133 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

260 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

437 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

79 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

118 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

Advertisements