Questions tagged as 'selenium'

0
answers

Error running test with Selenium Grid

I have a problem and I am running some tests in c # with Selenium Grid and they give me errors such as timeouts, elements not found ... Which does not happen if I do it in local, nothing happens. I've been looking at it for several days, changin...
asked by 05.10.2018 / 13:35
1
answer

Search for text and compare with a number

I want to search for a text and compare it with a number, if it's higher than a number like that, run an if and if it's lower an else string sato = driver.FindElement(By.CssSelector(".user_reward_points")).Text; if (sato > 1200) { d...
asked by 08.10.2018 / 23:38
0
answers

Selenium IDE Extract a specific value of a variable

I have a variable that contains 32453532 , I want to extract the first value of that variable, in this case '3' I use these commands but I can not get the value '3' store text | ruta donde se encuentra el texto | text...
asked by 09.10.2018 / 02:11
0
answers

selenium IDE .side export to python

When using the selenium IDE, it exports me to .side. There is some way to use it in python. ? to test my website.     
asked by 02.09.2018 / 05:21
0
answers

Download files with chrome dirver-Selenium in python?

What do I need to do? I need to download an excel in a specific route through my python code which I use selenium and chrome driver. What happens? Downloading the file well without hiding or putting it in the background does not work and does...
asked by 01.08.2018 / 19:12
1
answer

problem with selection of web page data with the same title of Class, with selenium, it has to be done by nth child (I think)

I have to select information from a web page but what happens is that the information is contained in "CSS elements with the same name as" class "", so I think you have to search for "nth child" but I the syntax fails .. can you help me? T...
asked by 20.07.2018 / 13:07
1
answer

accept a website privacy policy

I need to click on a link, specifically in Accept, of an HTML, but the problem I have is that I call (use get of selenium) to the web and that HTML where being accepted does not find it (or I do not know if I do it badly), but I think it is an "...
asked by 20.07.2018 / 01:07
1
answer

selenium installation for spyder

I tried to install selenium , use spyder3 of anaconda . I have installed it like this: conda install -c conda-forge selenium also with pip from the Anaconda3 directory    gives me error of not finding webdriv...
asked by 18.07.2018 / 01:49
0
answers

Problems with Selenium + Python (My script detected as malware in Chrome and selenium.webdriver 'has no attribute' FireFox)

I'm trying Selenium for the first time. I've only written four lines of code and I already have problems: First I tried to work with Chrome from selenium import webdriver from selenium.webdriver.chrome.options import Options _chrome_option...
asked by 07.07.2018 / 13:29
1
answer

Any way to get the elements of a table as a matrix? Selenium + Python

I am getting the cells of a table this way with Selenium. What I'm getting is a list with the value of each cell. def seleccionar_productos(driver): rows = driver.find_elements_by_xpath("//table[@id='tabla']/tbody/tr") cells = driver....
asked by 07.07.2018 / 22:25