Print and store Element after recieving with selenium (Python)
I got to the point of grabbing a list of elements by xpath but having trouble grabbing the html behind it.with this I grab the followers found by the xpath and print them out as how many I received,...
View ArticlePython with Selenium "element is not attached to the page document"
I have a python function that should click through all options of a product:submit_button = driver.find_element_by_id('quantityactionbox') elementList =...
View ArticlePython, BS and Selenium
I try to webscrap with javascript dynamic + bs + python and Ive read a lot of things to come up with this code where I try to scrap a price rendered with javascript on a famous website for example:from...
View ArticleThis version of ChromeDriver has not been tested with Chrome version 79 error...
Those are my settings:.gitlab-ci.ymlimage: node stages: - test tests: stage: test before_script: # Add Google Chrome to aptitude's (package manager) sources - echo "deb...
View ArticleHow to enable the Safe Browsing Option? Selenium with VBA [closed]
I essentially need to translate this (#1) Python solution or this (#2) Python solution into VBA, (Python code also shown below). It's the same as asking how one might start a VBA Selenium driver with...
View ArticleWhere can I find a list of all available Chrome Options with selenium?
Where can I find a list of all available Chrome Options with selenium? While crawling with selenium in a python environment, I had to use flash in the chrome webdriver. so I tried to find a setting...
View ArticleWebpage formatted in a way that makes selecting text with selenium impossible
This problem is driving me insane: I'm trying to capture the response from a Pandorabot using Selenium but although I can input text and make the bot reply, its webpage is formatted in such a way that...
View ArticleCan't click Allow button in permission dialog in Android using Appium
I am unable to tap on Deny or Allow buttons on the permissions dialog in Android using Appium+Java. Do I need to add any capabilities before going to tap on those buttons? Below is the...
View Articleorg.openqa.selenium.WebDriverException: disconnected: received...
I know that Selenium is an automated testing tool, but i'm trying to use it for RPA instead (things to do with my work environment)I've gotten the java code down, and it runs exactly how i want it. It...
View ArticleSelenium click on String array of elements
I have an String array that I get from a text file or CSV. I want Selenium to take that array and click on each checkbox element. The elements have this naming convention:1.0.50.gecb16, 1.1.50.gecb16,...
View ArticleKeys function works fine in Mac not in Windows Selenium
This code snippet works fine in Mac but not in Windows.actions.keyDown(Keys.SHIFT).click(comp5).click(comp6).click(comp7).click(comp8).keyUp(Keys.SHIFT).build().perform();Any alternatives which works...
View ArticleSelenium Webdriver issue with no Frame found
Can someone please help me figure out how to get Selenium Webdriver to find the frame after selecting Sign in??https://www.guaranteedrate.com/agent/visitors tap sign in sendkeys to Username@Testpublic...
View ArticleHow to get a list of all Test Methods belonging to a specific TestNG group?
How to get a list of all the test methods that are tagged with a specific TestNG group?Example input:group1 Example output I need:com.package.SomeTest.testSomething com.package.OtherTest.testOtherThing
View ArticlePrint everything in div tag selenium python3
I am trying to scrape a website which has some info under its div tag like this<div> id="searchResults" class="multiple-view-elements"<span>name</name> <span>info</name>...
View ArticlePython - Selenium Unable to locate element on Search button
I'm trying to locate and click on a button "Search" on internal website using python selenium. The element with class = "button":<a href="javascript:showSearch(true)" title="Search" class="button"...
View ArticleMultiple Scroll Bars in Python Selenium
i want to scroll the left nav bar (which shows the job list) to the bottom using python, selenium and chromedriver. I tried using:_driver.execute_script("window.scrollTo(0,...
View ArticleHow to remove the infobar "Microsoft Edge is being controlled by automated...
We are using selenium to run test against "Chromium based Edge". "The Chromium Edge" is downloaded from https://www.microsoftedgeinsider.com/en-us/download and the version is 80.0.334.2 (Official...
View ArticlePython - Message: element not interactable
I am having trouble with a selenium send keys on discord. I am attempting to send a message to a user.The error I get iselenium.common.exceptions.ElementNotInteractableException: Message: element not...
View ArticleHow to move to sibling in selenium
I have this code in html. and I want to go to a sibling node. I search by title (since this is a unique value in the UI), but I want to move to the same level but with different class name that will...
View Articleretrieving only certain properties when building a list of objects
I recently switch from C# to Java and not able to solve this problem. I am automation UI using selenium. I like to build a model for a list of elements on a page, retrieve property and then work with...
View Article