Questions tagged as 'selenium-webdriver'

0
answers

Print window, save PDF Selenium WebDriver

After developing a web page, I am developing the automated test of this web page. I'm using Selenium WebDriver with for .NET. After clicking the print button, the popup to choose the printer or switch to PDF is displayed, so my test stops, it...
asked by 10.09.2018 / 21:20
0
answers

Problems Elements / Images in Selenium Django

I'm having some problem with elements not loading properly on the ChromeDriver page using selenium in my Django application. I dumped Django's testing tool because in my scenario, I need the whole loaded database. And doing a load fi...
asked by 26.06.2018 / 18:28
1
answer

Error: "selenium.common.exceptions.WebDriverException: Message: Unknown error: Element is not clickable at point"

I'm setting a series of " checkboxes " in a lista variable. Then I run the variable in a loop so that only a few of them are clicked. However when the checkbox is not visible on the screen, Selenium does not click and displays the e...
asked by 05.10.2017 / 00:54
1
answer

How to configure Appium using Selenium Web Driver (C #) - Visual Studio

Good afternoon, I read some blogs on the Appium configuration, but I'm still kind of lost. I need to configure Appium using the Selenium Web Driver in VS (C #) . I currently work with Eclipse and Selenium Web Driver, but now I need to...
asked by 06.10.2016 / 20:28
0
answers

Download file with Selenium Chromedriver in headless mode

I'm trying to download a file in headless mode. I instantiated the driver like this: public static IWebDriver CriarWebDriver() { var options = new ChromeOptions(); if(HelperConfig.GetInstance().Headless) { options.AddAr...
asked by 12.12.2018 / 21:23
0
answers

Use Python to run tests on TFS [closed]

Hello! I would like to know how to use Python to run tests on TFS. My intention would be to generate a script via Selenium WebDriver, transform the code into Python and use it in TFS to run automated tests. I can do this with the C # code, us...
asked by 20.01.2017 / 10:55
1
answer

Redeem same named class values using Selenium

I have a situation where I need to retrieve values from a array of article 's, but I'm not very successful. My HTML looks like this: <section class="list"> <article class="card"> Article by Bigown </arti...
asked by 28.02.2017 / 21:49
1
answer

Update Selenium Frame VBA

Expensive, How can I do to update a frame with Selenium in VBA? Refresh frame is an option that exists when you right-click on a frame. I can not update the whole window, just the frame.     
asked by 16.03.2018 / 13:35
2
answers

How do I make selenium webdriver switch between open windows?

I need to make the webdriver navigate between open windows. I've tried: this.chromeDriver.SwitchTo().Window(chromeDriver.WindowHandles.Last()); but I can not use Last (). Is there any missing?     
asked by 22.08.2016 / 16:35
1
answer

How to get text, in CSS element receiving 2 class

I need to collect text from an angled system, where the element receives 2 CSS classes <div class="title ng-scope">80</div> I tested several ways to capture the text, but it does not return (the commented lines shows the attempt...
asked by 14.04.2017 / 23:13