selenium

Selecting a specific element in Selenium

Selecting a specific element in Selenium

In previous article Waiting for an element to be displayed using the WebDriverWait in Selenium, WebDriverWait is used to prevent the browser from performing the following actions until the condition is satisfied. This time, I will introduce you how to select HTML elements that can also be used in WebDriverWait. Selection with id attribute First of all, I introduce the most common way to specify the id attribute. The id
Waiting for an element to be displayed using the WebDriverWait in Selenium

Waiting for an element to be displayed using the WebDriverWait in Selenium

In a previous article Avoiding pop-up blocking when opening multiple Firefox tabs simultaneously in Selenium, I presented tips on running Selenium in Firefox. In this article, I will show you some tips for writing Selenium code. Selenium works faster than people. Selenium is fast, but it’s easy to overlook waitting when writing code that works with Selenium. The browser communicates and draws the screen when some event is triggered, such
Avoiding pop-up blocking when opening multiple Firefox tabs simultaneously in Selenium

Avoiding pop-up blocking when opening multiple Firefox tabs simultaneously in Selenium

In previous article Set up the Selenium Webdriver. Let’s automate with Python! , I introduced the procedure to build Selenium execution environment in Python. In this article, I would like to introduce a problem I actually ran into when opening multiple URLs in different tabs at the same time in Firefox and how to deal with it. What I originally wanted to do Open multiple URLs (about 100) at the
Set up the Selenium Webdriver. Let's automate with Python!

Set up the Selenium Webdriver. Let's automate with Python!

These days, even non-programmers are increasingly doing programming. That’s a good thing. Particularly popular with them is the automation of their work using the programming language Python. This means that we can use programs to simplify routine tasks that were previously done by hand. I’ve been getting a lot of needs (or rather questions) about running Selenium in Python, so I’ve decided to document them. Goals Set up the Selenium