Python Selenium vs. Javascript protractor
Python Selenium vs. Javascript ProtractorHello guys!Its been a rollercoaster about choosing between Python or Javascript. Before I start to explain my problems I have been having I just wanted to...
View ArticleSelenium webdriver.Remote driver does not work with tor...
I'm trying to use socks5 proxy on my remote driver which is hosted as a docker container on port 4444. here is code-sample:from selenium import webdriver opts = webdriver.ChromeOptions()...
View ArticleIs it possible to read incoming HTTP requests in automation software like...
I would like to read all incoming HTTP requests while using Selenium (or any other automation software), I would like to read the data (headers, response) from all these requests (which is just an...
View ArticleProgramming Stuck midway while running Selenium Python
Hi I'm trying to create a click robot and here is what I have from selenium import webdriver import time from selenium.webdriver.common.action_chains import ActionChains from...
View ArticleSelenium : Please protect ports used by ChromeDriver and related test...
I am connected to VPN through my local machine and trying to execute a selenium script on chrome browser then I am getting the following error:Only local connections are allowed. Please protect ports...
View ArticleChrome shows 'data;.' in address bar while using selenium to login [duplicate]
This question already has an answer here:Selenium doesn't open the specified URL and shows data:, 1 answerI'm using selenium to test login page like this:from selenium import webdriver import time...
View ArticleHow to find element by part of its id name?
I'm using selenium with python,now I want to locate an element by part of its id name,what can I do?For example,now I've already located a item by id name coption5 :sixth_item =...
View ArticleScraping a website using inputs with Selenium and BeautifulSoup?
I am trying to scrape the wester union send money-Website in order to get the current "euro-blue" exchange rate with the Argentinian pesos. Western Union is the only company that gives you the true...
View ArticleWhat i can use instead of DataRow property in contextData class in c#
I am using VS 2019 with below versions<ItemGroup> <PackageReference Include="DotNetSeleniumExtras.WaitHelpers" Version="3.11.0" /> <PackageReference Include="Microsoft.NET.Test.Sdk"...
View ArticleWait until element is available in selenium python [duplicate]
This question already has an answer here:Element MyElement is not clickable at point (x, y)… Other element would receive the click 3 answersI used wait until statement, still this is the error I'm...
View ArticleHow to run one method till driver closed in Selenium
I have one pop up which is displayed in 20 seconds after visiting the website and repeatedly displayed if the user does not do any activity. so I have one method where, if this pop up is displayed...
View ArticleExtent Report not getting generated for scenario outline in cucumber
I have facing an issue that in cucumber for scenario outline I am not able to generate the extent report but for scenario I don't have any problem for extent report.I am sharing my test testrunner and...
View ArticleTypescript - function get skipped
the below function gets skipped in debugging in all scenarios. I really can't tell the reason. nothing is thrown out of the catch block. On debug i immediately go to the lasr line after catch block....
View ArticleHow to click the kendo dropdown in selenium webdriver
Here is my selenium code:WebDriverWait wait = new WebDriverWait(driver, 30); wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//ul[id()='ddlSaleItem_listbox]")));...
View Articlehow to upload file using selenium with no input [closed]
The selenium script is written by python and running on linux. In the script, I need to upload file. But the element use angular wrapper component show as div instead of input,send_keys() is not...
View ArticleRun multiple Selenium Test Projects across Azure DevOps
We have a main CRM application, that used to be housed externally but has been brought in-house. We have all our stand-alone websites/apps/etc that update/read from this main application. Each of those...
View ArticleWebDriver cannot be resolved to a type ChromeDriver cannot be resolved to a...
This question is an exact duplicate of:java.lang.Error: Unresolved compilation problems : WebDriver/ChromeDriver cannot be resolved to a type error while executing selenium tests 3 answersI am using...
View ArticleHow to capture Network traffic using Java and get file type without using Proxy?
I need to capture network traffic using Java and get the File type. eg: IF it is xmlHTTPrequest the File type is XHR.
View ArticleSencha Disabled Button and Selenium Webdriver
I have a button on a website built with sencha/extjs. Currently the button id is savebutton-1550-btnEl, but this changes everytime the page is loaded. I know that the button is disabled, but for...
View ArticleAutomating webrtc testing tabsshare/audio
I am trying to automate tab sharing including the audio in a webRTC app for testing purposes. the goal is to avoid the clicks in the chrome window asking to share the screen or the tab, and in...
View Article