Most voted "selenium-webdriver" questions
Selenium is one of the most known and used tools today to carry out automation tests acceptance in web applications through the use of the browser.
Learn more…229 questions
Sort by count of
-
0
votes1
answer2089
viewsCheck if Widget exists with Selenium
I’m making a kind of bruteforce using Selenium, when I error the password and login, the message appears on the invalid login screen or password, if the message does not appear, ie correct login and…
-
0
votes0
answers218
viewsError while locating Xpath
Good afternoon, I’m having difficulty to solve this problem with Selenium, in which the code is running the automation perfectly and when it arrives at a certain element of the page that does not…
-
0
votes1
answer62
viewsUsing two webdrives in Selenium
I need to develop a script for automation of a website. I get a list of URLs I pass this list on a for that for each item in the list a new one is created webdriver and it asks to login to the site.…
-
0
votes1
answer32
viewsWebdrivererror when running E2E tests with Protractor/Selenium
Error occurring below when running E2E test specs, no action previously done that may have caused the error. That is the mistake: [14:20:03] I/testLogger - PID: 16221 Specs:…
-
0
votes1
answer944
viewsSelenium - Open Chrome with extensions already installed
Guys, I need the Chrome instance opened via Webdriver come with a plugin already installed "Always" that I open. I found some content, but it doesn’t work here. They can tell if it was because of…
java google-chrome selenium selenium-webdriver google-chrome-extensionasked 5 years, 6 months ago Patrick Longo 1 -
0
votes1
answer81
viewsSelenium Python IE 11 Runtime Problem
I have a problem running Selenium on IE 11. from selenium import webdriver from selenium.webdriver.common.keys import Keys driver = webdriver.Firefox() driver.get("http://www.python.org") assert…
-
0
votes1
answer244
viewsHelp with Chromium webdriver Selenium python3
I recently fixed a pi4 Raspberry and installed the corresponding webdriver but it is giving an error. ERROR Traceback (most recent call last): File "Bump.py", line 4, in <module> from…
-
0
votes0
answers303
viewsSet value in form field (or string input)
I have a form field that contains a built-in Javascript, which works dynamically. <input type="text" id="txtPreferencia" title="Tecla de atalho: Alt+R" name="txtPreferencia" class="infraText…
-
0
votes1
answer406
viewsWebdriver Firefoxdriver, run checkbox click
I am creating a robot to log into a page, mark a checkbox and download an export file. However I am not able to run checked in a checkbox. I am using Selenium Webdriver with Firefoxdriver with the…
-
0
votes1
answer103
viewsImport JSON data between Python files
I’m having a hard time. i have a code in Selenium(test.py) and I have another python queue code (Queue.py) my goal is to pass the error message [ error = {'Status': 'Error'} ] to the…
-
0
votes0
answers214
viewsSelenium Python Input on a virtual keyboard
I am facing a problem with Selenium, which is to log in to a page, but the problem is that when I get the element (name) or the element (ID) of the field it returns error telling me that that…
-
0
votes1
answer149
viewsCapybara does not install in Ruby
I’m new to Ruby and I wanted a help, I was trying to install Capybara with Ruby but I’m not getting it. The mistake is: Gem::Runtimerequirementnotmeterror: Capybara requires Ruby version >=…
-
0
votes1
answer1016
viewsSearch for e-mail or word within a webdriver site in python?
Hello, I am wanting to create a Bot to enter a website and search if that site has an email to contact and create an email list ... the problem is that this can all be very generic.. on some site…
-
0
votes2
answers2088
viewsI type the correct xpath from a button, but Selenium says xpath does not exist
I’m making a bot in python using Selenium and need to click the Instagram like button using code. To find the Like button I’m using the method find_element_by_xpath(). To make sure, I clicked on…
-
0
votes2
answers210
viewsCreate execution looping until an element is visible
I need to make a looping in which it stops running only when a specific element becomes visible. It must click the filter button and check if the element is visible, if the return is false, it…
-
0
votes1
answer252
viewsDoubts - Capturing messages in the Selenium IDE
I am building a Test in the Selenium IDE (Chrome extension) to fill out a form and capture the message it returns in case of an error. On the site, when an error occurs, the message I’d like to…
-
0
votes1
answer314
viewsSelenium VBA to insert text into an ID
My code tries to copy from the windows Clipboard and paste into the site ID with VBA + Selenium. Option Explicit Public Sub PasteInfo() Dim d As WebDriver, clipboard As Object, data As String Set d…
-
0
votes1
answer335
viewsExit an Iframe Selenium Pyhton
I’m having a hard time... I have a page to manipulate with Selenium, my problem is Iframes. I access a main Iframe and within that main iframe I have other iframes to manipulate, my porblema is that…
-
0
votes1
answer322
viewsClickcontext and copy
Good morning. My code is like this Sub pegadadoschrome() Dim obj As New webdriver Dim keys As selenium.keys Set keys = New selenium.keys obj.Start "chrome", "" obj.get "https://gvt.etadirect.com/"…
-
0
votes1
answer370
viewsI need to copy a value that is in "value". I am using Eclipse Java Selenium Library
This is the html: input name="nr_proposta" type="text" value="52367" data-mask="9?99999999" data-mask-placeholder=" " class="form-control apagar" id="nr_proposta" In java I’m doing so: WebElement…
-
0
votes1
answer388
viewsHow to loop python code, unittest, Selenium?
Following the code, how to proceed in a loop to always repeat the same fill N times? Or even picking up the names from a list. txt and populating in "name"? def teste(self): driver = self.driver…
-
0
votes0
answers299
viewsError: (The HTTP request to the remote Webdriver server for URL http://.. url timed out after 60 Seconds) when running test
When trying to run the tests in Internet Explorer the following error appears (The HTTP request to the remote Webdriver server for URL…
-
0
votes1
answer1090
viewsFind element using Python + Selenium
Hello, I am trying to click on an element using webdriver with pythone Selenium The element : <a class="ppm_button_menu_item" alt="Exportar para CSV" href="javascript:clarity.uitk.exportToFile(…
-
0
votes1
answer166
viewsPython: Web Scraping with dynamic values
I am learning about Web Scraping, I have already managed to do some actions but I came across problem in a dynamic page where values are changed every refresh. Unfortunately I can not pass the…
-
0
votes1
answer46
viewsQuestions with the Clear command
Good evening, you guys. I’m new to the forum, so I apologize if you’ve already asked this question. My doubt concerns the command .clear(); using the webdriver Selenium in eclipse. Well, I’m…
-
0
votes1
answer262
viewsSelecting two options in the drop down menu with Selenium + Python does not work
from selenium import webdriver from time import sleep from urllib.request import Request,urlopen import pandas as pd from selenium.webdriver.support.ui import Select from…
-
0
votes3
answers983
viewsCheck if an element exists if the page is loaded. (Selenium)
I am testing a piece of my application, so I created the following method to check if the element exists on the page: public boolean existe(){ try{ driver.findElement(elemento); return true; }…
-
0
votes1
answer317
viewsWebscrap with Selenium - How to select content from a drop-down menu item with quotes in id
I see you have a similar question, but the answer still hasn’t helped me. I need to collect data from the Central Bank. For this, I need to download the files that are in a drop down, one at a time.…
-
0
votes1
answer452
viewsError making a loop for comments on instagram, who helps me? Python Selenium
I need to make a loop that picks up line by line from a file. txt and post as comment on instagram. Through a test I managed to print the first 10 lines of a file. txt arquivo =…
-
0
votes2
answers668
viewsProblems in the automation of sending messages on Whatsapp through the Python Selenium library
I’m with an automatic messaging project via Whatsapp that consists of sending messages provided with special characters (emojis and other symbols) saved in files . txt, however, whenever I use the…
-
0
votes1
answer53
viewsHow to move the title from one column to another?? (web scraping-python)
I’m trying to make a web scraping, but if you view the site you notice that certain titles are on certain columns. What my program does is take the table, create two full columns of Nan and assign…
-
0
votes1
answer341
viewsProblem navigating with Selenium (using Python) in search results presented in dynamic HTML
I am performing a scraping of articles of a newspaper from Pernambuco (Diário de PE) according to a search I did with some keywords on the subject of interest. The journal search returns 10 results…
-
0
votes1
answer89
viewsPython Selenium capturing only 1 link
Good afternoon to everyone, I’m starting to learn Selenium and have already passed me a project to do that I’m half lost. I need to capture all the URL summaries…
-
0
votes0
answers19
viewsSelenium with AWS Farm giving error "URL has expired"
Hello. I am developing automated tests using Selenium and AWS Farm (desktop). To run the tests I am using Circleci. When I run the tests it starts the execution but then presents the following…
-
0
votes3
answers510
viewsUse Selenium without opening browser
How to use Selenium without opening the browser? I used a code I saw right here, options.add_argument("--headless"), and also options.set_headless(True), but makes that mistake:…
-
0
votes0
answers43
viewsPull a list with multiple search names with Rselenium
Good evening, I’m trying to pull data from google scholar with Rselenium but I’m having a hard time getting the information from the magazines I’m looking for. Playing the code below: #Primeiro…
-
0
votes1
answer241
viewsError using "find_element" command in python Selenium
I am programming a boot that interacts with a google page (google Meet) for this I am Selenium, but when I use the command find_element in python it gives the following error:…
-
0
votes0
answers16
viewsRename Extent Report after running the tests
Is there any way to rename and move an Extent Report after the tests are finished? I would like the name to be saved dynamically at the end of each execution, adding for example the date and time of…
-
0
votes0
answers41
viewsHow to select Whatsapp nodejs + Selenium input
Language in Nodejs + Selenium I’m making a simple bot in nodejs and Selenium, I just need to be able to select the input to send file but I’m not getting, It is the first file type input, but I’m…
-
0
votes1
answer188
viewsAutomation Webdriver with python
I’m using the python Selenium Webdriver to log in to a site to do some tasks, I’m able to click login, but it doesn’t take the input I ask to type. This is code Selenium: import time import requests…
-
0
votes0
answers18
viewsIdentify an element in Seleniumchmore Drive if it does not appear to perform a function
Well it makes use of the for to pull the spreadsheet the phone numbers of the whatapp web page and send the message but in some case the phone may not exist, generating an error. I tried to do the…
-
0
votes0
answers34
viewsSelenium error while loading specific "Selenium Failed to resolve address" page
I am creating a python bot and when loading a page it shows in the console the following errors however it continues running however when I will try to execute anything involving the page it hangs…
python selenium selenium-webdriver web-scraping webdriverasked 3 years, 11 months ago OlopesMaster 1 -
0
votes0
answers30
viewsAutomation error in Selenium: Failed to change window status to 'normal'
When trying to execute a code using the Selenium library, I get the following error: <html><head></head><body></body></html> Traceback (most recent call last):…
python python-3.x selenium selenium-webdriver automationasked 3 years, 11 months ago Lucas Palmeira 13 -
0
votes1
answer98
viewsWeb Scraping with Webdriver and python Selenium
This program aims to download excel files to optimize time. But there are the filters to be filled before downloading the file, in these filters have the start date and end date, it must be the same…
-
0
votes0
answers55
viewsAutomation with Selenium Webdriver Python
I’m doing an automation. where I access one page to be able to go to another, after going to another page I try to click on an element, but even using Webdriverwait is showing that it was not found…
-
0
votes1
answer46
viewsHow to reach a dropdown element through partial text in Selenium - python
How can I select an element from a dropdown through part of its name? I want to select an option based on values taken from a database, but these values do not have the full name of the elements of…
-
0
votes0
answers13
viewsProblem accessing multi-select with Selenium webdriver and Java
Hello everyone, I’m trying to access as shown in the image, a multi-select, which is in the yellow list, in ul and li, an option of Languages: Arabic, Bulgarian etc., and when selected, it goes to…
-
0
votes0
answers51
viewsSelect - Dropdown menu option not selected - Python Selenium
Hello, I’m doing a Python project using Selenium. When you select to choose an option from a dropdown menu, it is not selected. I’ve always done it this way and it’s always worked and I wonder if…
-
0
votes2
answers68
viewsJoin cells with python
I am making a web scraping to take data from the best actions of the day and join in a table in an excel file. I am trying by code: from selenium import webdriver from webdriver_manager.microsoft…
-
0
votes0
answers11
viewsAssertionerror error in Selenium
I’m trying to perform a message list comparison test using Selenium, notice how I’m capturing the list. public List<String> localizadorListaMensagens(By by) { List<WebElement> mensagens…