Scraping the moves of Lichess in BS4
i would like to create an Suggestion AI about a best move in chess. I dont really get the html tag of lichess in bs4.In Chrome I can actually see the Tag in bs4 it is an script based command. I will...
View ArticleWebdriver unable to find element
I was unable to find the element (with id below) with Selenium even though it's visible in the html source page after successfully clicking on 'Search' button (using Selenium) of the previous page that...
View ArticleIterate through all links of a website using Selenium
I'm new to Selenium and I would like to download all the pdf, ppt(x) and doc(x) files from a website. I have written the following code. But I'm confused how to get the inner links:import java.io.*;...
View ArticleSend keys to HTML element using Selenium
I am writing an automation script for sports betting in Python using Selenium. I am stuck at a point where Selenium is unable to click or send keys to the specific HTML element highlighted in the...
View ArticleHow to find a dynamic elements using selenium webdriver?
<div id="button" data-testid="widgetButton" class=" chat-closed mobile-size__large"> I have elements with a special character which the Webdriver can't locate.I'm trying to click on an item, I've...
View ArticleHow to select an option from select dropdown
As part of learning phase am working to automate one application, but in between I'm stuck with one drop down selection , I have tried it with few options like by.id , by.xpath, by.value , by.index etc...
View ArticleUsing sendKeys command for "multiple, simultaneous key press" actions in...
I am trying to perform a multi key press action on Guidewire applications using JMeter WebDriver. Find the below samplesAlt + Shift + TAlt + Shift + PI guess Selenium allows key press only for special...
View ArticleWebDriverException Error when using selenium chrome webdriver with options
I would like to run the chrome webdriver on my MAC with my original chrome profile/options, so that i don't need to write a script to log in to the page in the temporary opened automated driver.my...
View ArticleIs it possible to open a new Tab with a different Proxy with Selenium Webdriver?
In my Project, I would like to open a new tab with a new proxy. I need to open quite a few tabs. Is that even possible, or do I need to open several windows?
View ArticleLocator Strategy 'css selector' is not supported for this session issue with...
Since I'm new to mobile automation, I've been trying to run simple activities using appium maven and eclipse. But When I try to run Calculator app opens but the elements are not accessible.This the...
View ArticleNoSuchSessionException in java selenium cucumber framework while running...
Here is the issue below: org.openqa.selenium.NoSuchSessionException: invalid session id Build info: version: '4.0.0-alpha-3', revision: '*****' System info: host: '*****', ip: '******', os.name:...
View ArticleNew tab using Selenium Python
I want Selenium to check if a window is open in Chrome browser or not, if yes, then open a new tab to the existing window Else, open a new window.Currently I am using:from selenium import webdriver...
View Articleselenium chrome connection refused during test run
Sometimes, but not always, when running our end-to-end tests we get a ConnectRefused exception. This only happens with chrome but not with firefox. For us this happens during the test, i.e, after the...
View ArticleNo errors in uploading images with selenium java but does not execute
Highlighted area is the Element targetI have tried the following: Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard(); StringSelection str = new...
View ArticlesendKeys is not working properly in LINUX machine
I am not able to enter any Text using sendKeys in LINUX machine for some input Box while same code working fine in window machine(tried different method of entering data eg. JavaScript Executor,...
View ArticlePython Selenium - I can't run the while loop
I just started python. I want to write a loop containing bot using Selenium. I want to login to a site. I send my number and password. The page refreshes when there is density on the server. Number and...
View ArticleTo integrate jenkin with selenium webdriver and C# [closed]
I am working on a selenium web driver with C#. I would like to integrate Jenkin with selenium tests. It would be great help. If anyone can provide me step by step guide on how to integrate both?Thanks
View ArticleFind an element using xpath
Today I've met this problem: I have some html code:<div class="Main"> <div> <div class="display">First:</div> <div class="price">$0.01</div> </div> <div>...
View ArticleAble to clear the textbox but not able to send new text
I am trying to extract table from a website using python selenium. In the webpage, i need to select the desired date. For day and month there are two dropdown box. For these two i am using css selector...
View ArticleDeleting user-data-dir after execution done
I am using remote web driver, Java and selenium 3.141.59 (both server and client). I have Chrome 79 and chrome driver 79. I was thinking selenium would delete the user-data-dirs automatically after the...
View Article