Questions tagged as 'selenium-webdriver'

1
answer

How do I put the chrome executable in PATH? Python

I'm still trying to open a browser from python, using selenium. This is the code: from selenium import webdriver browser=webdriver.Chrome() browser.get("https://facebook.com") This error appears: WebDriverException: 'chromedriver' executa...
asked by 07.12.2018 / 00:43
1
answer

How do I use .get in Selenium? Python

I'm doing a program and I need to open a web page from python, I'm using the selenium module. This is the code: from selenium import webdriver browser=webdriver.Chrome browser.get("https://facebook.com") The problem is that when I try it, I...
asked by 06.12.2018 / 22:17
1
answer

Help with a webdriver test with geckodriver and selenium ide

I'm using selenium ide the oldest version where you can export the script in testng driverweb format, the issue is that I tried several ways to run the test but I still have problems with the test, here's the code: @BeforeClass(alwaysRun = tru...
asked by 20.11.2018 / 01:44
0
answers

Click on hidden menu gives unknown error

I'm scraping the web nowgoal.com. If you go to any game that appears on the main page, for example link you have several tables. Each table has on the right a series of options to the right of the Away column. When I try to select an option fr...
asked by 26.04.2018 / 20:19
0
answers

Selenium. Mouse over element does not display content

I am making scrapes of data on the link page. The problem I have is that if you go down on the main page, you will see the results of the matches of the day already finished, and if you place the mouse over the result, a table appears. For wha...
asked by 08.01.2018 / 17:24
1
answer

problem with selector with space, selenium python

I have a problem with the selectorer, which has a space at the beginning: I have something like this on html: <div class=" _xyz"></div> and in python I do this: driver.find_elements_by_class_name(' _xyz') or this...
asked by 16.06.2018 / 20:15
1
answer

I can not detect xpath on Twitter

Since yesterday I have been trying in Python, with Selenium, to create a bot that allows voting a poll. The process from the beginning of the session until the vote is done perfectly, but when I indicate the xPath of the option to vote, it does...
asked by 24.04.2018 / 09:42
1
answer

Error: Could not instantiate class org.openqa.selenium.chrome.ChromeDriver

This error appears when I run the test. I do not know how to solve it thanks for your help    Could not instantiate new WebDriver instance of type class   org.openqa.selenium.chrome.ChromeDriver import org.junit.Test; import org.junit.runn...
asked by 16.03.2018 / 17:35
1
answer

To extract information from a table?

I need to extract the information from a table with selenium, python. Cuepo html: <table class="table table-bordered"> <tbody> <tr> <td>Valor de...
asked by 29.12.2017 / 00:21
1
answer

org.openqa.selenium.StaleElementReferenceException: stale element reference: element is not attached to the page document

I have this error    Exception in thread "main"       org.openqa.selenium.StaleElementReferenceException: stale element   reference: element is not linked to the page document I already look for solutions but none of them helps me to sol...
asked by 12.12.2018 / 20:29