No-Cache Refresh In Robot Framework Selenium2Library
I have a test script written in python robot framework which navigates through a website and tests its pages. The website sometimes needs to refresh all its content from server, i.e. it needs a...
View ArticleInheritance in selenium webdriver using testng
package user;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver;import org.testng.annotations.Test;import...
View ArticleI have a radio buttons in web table i have to click one of the radio button...
enter image description here Please click on this image to see the sample webtableBelow is the webtable i have to click a radio button based on column name and row nameex: column name is "Emirates" and...
View ArticleHow do I open a file on remote mac from automation tests on PC
Using VS/C#/Selenium/.Net 8.0 for a large set of regression tests which work fine on Windows with Chrome, Edge and Firefox on Windows.However not so well on Mac with Safari with which we are using...
View ArticleCan you perform WebDriverWait in an ActionChain?
I often build ActionChains to interact with MUI components. Here is one that enters the date MM/DD/YYYY but ensures we start typing in the MM portion of the input. I have to wait for the animation of...
View ArticleNeed Help Using Selenium to take screenshot of every page within a pdf
I am using selenium and java together to learn automation. For this specific problem I am trying to use selenium to go to a google drive link that contains a pdf and then take a screenshot of every...
View ArticleHow to get the ChromeDriver automatically updated through Python selenium...
I use to pack the Chromedriver into my exe package too but as people say it changes quite frequently.So I try the auto check for update method using the selenium import webdriver which also worked like...
View ArticleSelenium Handshake Failed (new version of Selenium)
options1 = webdriver.ChromeOptions()options1.add_argument('--ignore-certificate-errors')options1.add_argument('--ignore-ssl-errors')driver =...
View ArticleHow to open a URL with a hash using Selenium?
I'm trying to test my Backbone.js web application with Selenium IDE.Selenium can open my test case's initial URL so long as it's in a fresh browser window -- e.g. open /#/login -- but it times out...
View ArticleAny cucumber Before and After hook at a feature level
i have gone through many help, but all are about explaining on scenario level. Is there any Before and After hook at feature level for cucumber JVM.? This page cucumber Hook tells about ruby language,...
View ArticleSelenium Automation Problems
I'm new to Selenium and am using Firefox as my browser.On the webpage I'm trying to automate there is a tableCell that changes depending on the page selected. It starts out with "First" "1" "2" and...
View Articlechrome URL is "data;" after selenium TC is run
How to stop selenium chrome testrun at current AUT URL, not at URL "data;"?I disabled driver.quit() in order to see the last URL.I entered a wait after opening the correct AUT URL.Browser navigation...
View ArticleHow can we use Selenium Webdriver in colab.research.google.com?
I want to use Selenium Webdriver of Chrome in colab.research.google.com for fast processing. I was able to install Selenium using !pip install selenium but the webdriver of chrome needs a path to...
View Articlechrome developer tools XPath is unique but error is `NoSuchElementException`...
I have the following html:<a id="basic-nav-dropdown" aria-expanded="false" role="button" class="dropdown-toggle nav-link" tabindex="0" href="#">Stammdaten</a>and find a unique occurrence in...
View Articleselenium webdriver url navigation (on microsoft edge with window10) , hang...
I have been doing URL navigation ( list of URL in a file ) using selenium webdriver for microsoft edge browser on window 10 machine.I have written automation script in python.code snippet :driver =...
View ArticleSelenium ChromeDriver "get" doesn't reliably load @import fonts
I have a few HTML pages like this:<!DOCTYPE html><html><head><meta charset="utf-8"><style>@import...
View ArticleGetting unwanted not secure web window on trying to perform any action on any...
Screenshot of my code outputI tried the below code to navigate to a browser enter url - https://www.opencart.com/index.php?route=cms/demo and perform click action on a web element. But on trying to...
View ArticleIntermittent DriverConfigurationError with ChromeDriver in Jenkins Pipeline:...
I’m running Selenium tests with Cucumber in a Jenkins pipeline from a Vaadin Java Spring project. My tests use ChromeDriver in headless mode and are configured with Serenity BDD (Thucydides). The setup...
View ArticleHow to use Selenium to take screenshot of every page within a PDF
I am using Selenium and Java together to learn automation. For this specific problem, I am trying to use Selenium to go to a Google Drive link that contains a PDF and then take a screenshot of every...
View Articleorg.openqa.selenium.ElementClickInterceptedException: element click...
When loading "https://ebay.com" i want to decline all the cookies by clicking the button "Decline All". The button is easy to identify and to avoid to click it while it might not be ready or in a non...
View Article