Top "Automated-tests" questions

Test automation is the use of software to control the execution of tests, the comparison of actual outcomes to predicted outcomes, the setting up of test preconditions, and other test control and test reporting functions.

Typing the Enter/Return key using Python and Selenium

I'm looking for a quick way to type the Enter or Return key in Selenium. Unfortunately, the form I'm trying …

selenium automation automated-tests keypress enter
Debugging "Element is not clickable at point" error

I see this only in Chrome. The full error message reads: "org.openqa.selenium.WebDriverException: Element is not clickable at …

google-chrome selenium selenium-webdriver automated-tests
Scroll Element into View with Selenium

Is there any way in either Selenium 1.x or 2.x to scroll the browser window so that a particular element …

selenium scroll automated-tests
Get HTML Source of WebElement in Selenium WebDriver using Python

I'm using the Python bindings to run Selenium WebDriver: from selenium import webdriver wd = webdriver.Firefox() I know I can …

python selenium selenium-webdriver webdriver automated-tests
Selenium C# WebDriver: Wait until element is present

I want to make sure that an element is present before the webdriver starts doing stuff. I'm trying to get …

c# selenium selenium-webdriver webdriver automated-tests
Running Selenium WebDriver python bindings in chrome

I ran into a problem while working with Selenium. For my project, I have to use Chrome. However, I can't …

python linux google-chrome selenium automated-tests
How can I scroll a web page using selenium webdriver in python?

I am currently using selenium webdriver to parse through facebook user friends page and extract all ids from the AJAX …

python selenium selenium-webdriver automated-tests
Message "Async callback was not invoked within the 5000 ms timeout specified by jest.setTimeout"

I'm using Puppeteer and Jest to run some front end tests. My tests look as follows: describe("Profile Tab Exists …

javascript automated-tests jestjs puppeteer
Random "Element is no longer attached to the DOM" StaleElementReferenceException

I'm hoping it's just me, but Selenium Webdriver seems like a complete nightmare. The Chrome webdriver is currently unusable, and …

java selenium-webdriver webdriver automated-tests
How to find specific lines in a table using Selenium?

Here is an example code: <div id="productOrderContainer"> <table class="table gradient myPage"> So this table …

selenium selenium-webdriver web-testing automated-tests gui-testing