Questions tagged as 'selenium'

2
answers

Load different URLs without closing the browser

Through this code, I load different URLs in the browser to extract the source, but I close the browser after each reading, can I reload with the following URL in the list? from selenium import webdriver from bs4 import BeautifulSoup delFicher...
asked by 03.08.2017 / 14:53
2
answers

click button with selenium

Hi, I'm new to Selenium. This is the code of the button where I want to click <a href="javascript:bp(26834)">Clic para ver</a> I navigate to the indicated page but it does not reflect the click action that should show a hidde...
asked by 14.09.2018 / 23:46
1
answer

Start automated test selenium WebDriver Chrome

I am trying to start a test in Chrome with Selenium WebDriver but it does not progress from WebDriver driver = new ChromeDriver(); I am using maven version of Chrome Driver Selenium: <dependency> <groupId>org....
asked by 17.02.2016 / 23:26
1
answer

Can Selenium be run as a console, but not as a test in Azure?

The robots run as a console from selenium, what you need to know is if Azure supports SELENIUM not only as a test.     
asked by 14.06.2016 / 22:22
1
answer

Repeatedly modify url based on a list and visit it

I have a code that I use to modify certain values of a URL. I explain the process, after login, I call another url in which I make changes. The problem is that I need to enter many URLs similar to these to do the same operation, the difference b...
asked by 03.10.2017 / 01:35
3
answers

ERROR TO CORRECT MY PROJECT (Error: A JNI error has occurred, please check your installation and try again)

When I try to run my test project (Selenium and testNG) I get this error: Error: A JNI error has occurred, please check your installation and try again Exception in thread "main" java.lang.NoClassDefFoundError: com/beust/jcommander/ParameterEx...
asked by 29.09.2016 / 18:19
1
answer

Disable chrome window in selenium python

I need to deactivate the browser window that opens when the tests are run. I copy the code I use and it should work but it does not: from selenium.webdriver.chrome.options import Options class LoginTest(unittest.TestCase): def test(self):...
asked by 20.02.2018 / 21:41
2
answers

SELENIUM problem when trying to connect to the firefox driver

/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package test; import com.gargoylesoftware.htmlunit.javascrip...
asked by 10.07.2017 / 20:58
1
answer

Error: A JNI error has occurred, please check your installation and try again

I have the following exception: how could I resolve it? Error: A JNI error has occurred, please check your installation and try again Exception in thread "main" java.lang.NoClassDefFoundError: com/beust/jcommander/ParameterException at java.la...
asked by 03.10.2016 / 21:48
0
answers

Continue working while running selenium

I try to open a selenium button, but it works on the same thread as the form, so how can I continue working on the form, this is the code IWebDriver driver = new FirefoxDriver(); driver.Navigate().GoToUrl("https://google.com"); driver.FindEl...
asked by 15.10.2018 / 02:23