Questions tagged [chrome-web-driver]

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. It is being developed by members of the Chromium and WebDriver teams.

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. It is being developed by members of the Chromium and WebDriver teams.

213 questions
0
votes
1 answer

populate dropdown box in Jmeter using google chrome web driver

I'm struggling to populate a dropdown I can get it to select it but unsure on what to do to select the value: var TitleField = WDS.browser.findElement(pkg.By.id('Title')) TitleField.click() TitleField.sendKeys(['Mr']) I've seen some articles and it…
Tau7
  • 15
  • 8
0
votes
2 answers

Testing Chrome using Selenium-WebDriver while offline in C#

I am using Chrome, and I would like to be able to run automation tests in C# that tests while the application is offline (I am testing a mobile app with PhoneGap), and later on get online to complete the tests. Is it possible using WebDriver in…
Tito
  • 722
  • 4
  • 26
  • 55
0
votes
1 answer

Protractor: Unable to execute e2e testcases [http://localhost:3000 is not available] in Webstorm 8

I am trying to execute e2e in webstorm 8. I have configured node.js as per the instructions given at How to debug angular protractor tests in WebStorm Following are the configuration details - Node interpreter: C:\Program…
0
votes
4 answers

Error "cannot find Chrome binary" in windows 8 AMD64 while trying to launch selenium web-driver API

I'm currently working with Chrome extension of selenium web-driver in windows 8 AMD64. I got an issue launching Chrome; It gives me this: Traceback (most recent call last): File "D:/java/code/SVN/OMC/trunk/Test/Scripts/PMS\elements\UILoader.py",…
-1
votes
1 answer

I want to disable "the chrome is being controlled by automated test software" while executing any test in robot framework

Is that possible to disable chrome banner"chrome is being controlled by automated test software" in robot framework..I saw there is many code available for java+selenium.. please help me to get the solution. Tried maximum effort but failed
-1
votes
1 answer

How can I make Selenium click 'Open' on a PDF download page using C# and handle the iframe selection?

Unable to click open in pdf download page using C# selenium. how to make the driver understand the iframe and make the selection? PDF download page Selenium code I tried: driver.SwitchTo().Window(driver.WindowHandles.Last()); …
-1
votes
1 answer

find elements by class name selenium python is not working for me

I want to get web elements with the same class name. I'll use those to take screenshots of elements for my application. I am using Selenium in Python for this purpose. url = "https://www.pexels.com/search/happy/" driver =…
-1
votes
1 answer

Fetch all links using Selenium Python

In a webpage there are 15 links that starts with similar link names which are inside an iframe. If I try to fetch those not all the links are fetched. Below are the code I tried. driver =…
Sriram
  • 169
  • 1
  • 9
-1
votes
2 answers

Not able to click on "SAVE" Bbutton in Python Selenium - Chrome

Hi I do have the below codes for the Save Button that needs to be clicked using Python Selenium. 1
-1
votes
2 answers

How to check if Python Selenium Chrome headless is working?

I'm trying to implement Python Selenium Chrome headless, I have the code snippet below. When i try the same code without headless option, i can see the browser launch as well as the current url on the console. But when i use headless option, this…
-1
votes
1 answer

How to HttpGet a url using ChromeDriver in c#

I am using OpenQA.Selenium.Chrome ChromeDriver for automating the browser changes. As per the application, The URL will only send a response when is the user is login in into the browser, otherwise, it will return 400 Error I need to identify…
Mayank
  • 1,351
  • 5
  • 23
  • 42
-1
votes
1 answer

I'm trying to start the chrome webdriver on linux, but it hangs, then closes

I'm making a program with selenium (python). It was working, and out of nowhere, the webdriver no longer works. I'm developing on a windows environment (and it works fine), but once I upload the code to the production server (Ubuntu), I try to open…
-1
votes
1 answer

How to select a local file for a file upload with python and selenium

I have been writing the script to fill a form using Selenium with Python. I would like to attach an image file to it. So when I reach the button to upload the file and click it, I no longer can use Selenium to find the element. I need to figure out…
Optimal Myk
  • 1
  • 1
  • 1
-1
votes
1 answer

addEventListener handler function not returning all attributes of the event object for mouse click event

The below code snippet is written using C# code in a normal UnitTest project template of Visual Studio. I have added the Selenium web driver support dlls by adding 2 NuGet packages : Selenium WebDriver Support classes and Selenium WebDriver. Then…
5Qe
  • 44
  • 4
-2
votes
3 answers

WebDriver get text

I use WebDriver and ChromeDriver. How i can fetch text from this speech bubble: [] And code this speech bubble from website: Thank you for your help!
1 2 3
14
15