Questions tagged as 'webdriver'

0
answers

Have it open and reopen every x time a number of Python and Selenium tabs

I need this code of my every hour to do the process of reopening all tabs or setting or just close everything and run that code every hour. How? from selenium import webdriver import time import json import sys import os import pyautogui if l...
asked by 06.12.2017 / 20:24
1
answer

Method [Test] not found after build

When I build build from the script below, it does not return any errors; however, the build does not find the [Test] test method, and I can not execute it. My script is object-oriented: it calls the class massaBase , which read...
asked by 22.08.2017 / 18:55
0
answers

How to check pagination in selenium webdrive - java

Hello, I'm having trouble verifying the number of rows, to see whether or not you can perform paging. I'm using - selenium webdriver - java Thank you.     
asked by 10.08.2017 / 16:17
2
answers

Unpick Chrome from running tests with automated software

I tried to implement Chrome Options in my script to delete that yellow information bar from Chrome, which is displayed every time we run automated tests (" Chrome is being controlled by automated test software " ), but the result I had wa...
asked by 08.08.2017 / 12:54
2
answers

Clear () and SendKeys () in a single method

I have methods clear and sendKeys and wanted "colapsar" both in one, WebElement user = webdriver.findElement(By.id("username")); user.clear(); user.sendKeys(username); WebElement passw = webdriver.findElement(By.id(...
asked by 05.12.2017 / 12:13
1
answer

Problem click button python selenium

I'm having trouble clicking a button, so try gives the ElementNotVisibleException error: Message: element not interactable pdf = driver.find_element_by_xpath('//*[@class="btn btn-default btn-segunda-via-aberta ng-scope"]') pdf.click()...
asked by 17.10.2018 / 20:37