Can't launch Firefox browser 71.0.xxxx
I am trying to launch firefox browser 71.0.XXXX (64 bit) in windows 10. Passing browser type ass parameter in testng.xml file. But its giving me error. I have downloaded geckodriver-v0.26.0-win64.zip...
View ArticleWhy is driver.quit() killing memory?
I'm trying to run a bunch of tests on selenium. after every test I was using driver.quit() method but using this method does not free the ram and I run out of memory after I while. I changed it with...
View ArticleAttaching screenshots to TestNG Failed methods results
I am looking for a way to attach a screenshot to Results section of TestNG Report for the failed methods.So far I was able to attache my screenshots to Reporter Output by implementing...
View ArticleSelenium Webdriver Java-> Click Facebook share button for the post i want
I am facing the problem in identifying and clicking on share button for a facebook post. Suppose, i have 4 posts on my Facebook page. I am looking to click share and then 'share...' from small pop...
View Articlehow to click button in headless and button have div tag inside it using...
using this code for without headless approch.. website link: https://www.na-kd.com/en/sweaters?sortBy=popularity&count=108try: element =...
View ArticleHow to use Chrome DevTools protocol in Selenium (using Python) for capturing...
I know that Fetch Domain is used for this purpose but I do not know how exactly I can implement it. In Selenium python, I used the following code to enable issuing of requestPaused...
View ArticleHow to make chromium opened via selenium to perform the same way as if I just...
First of all I want to mention that I'm just a networking guy and don't have experience with technologies used below.Quick history, I wrote a small python script that uses selenium and chrome driver to...
View Articlepython selenium: Not able to click in a tree node element using...
I use selenium in python to inspect elements. I have an html code below. I have to inspect some element (node tree) but I am not able to click on it. I would like to know how to click on nodes to open...
View ArticleExtract contents after click() with Python Selenium
I would like to extract the bio of a guy Herbert W. Gullquist. It is from "Manager Timeline" after clicking on his name ("Gullquist is chief investment officer and a general partner with Lazard Asset...
View ArticleI want to learn Selenium for web scraping [closed]
I am trying to do a web scraper to gather some information I need, I understand that I have to send some requests inside the web pages, sometimes simulate buying orders to get that info. Selenium is a...
View ArticleSelenium Webdriver (VBA): Explicit Wait
I am navigating a web application that will often throw an error if there is an attempt to click an element before it can be interacted with. When using Selenium WebDriver (java), I can easily work...
View ArticleWhat is the best wait strategy in Selenium for interacting with a WebElement
I just started with implementing some UItests for a new WebApplication and noticed that sometimes tests are failing when I wait for an Element to Exist while the same test succeeds when waiting for the...
View ArticleXpath in Selenium (chromedriver) wont match second tag
Trying to match a specific span on a website with selenium chromedriver (Version 79.0.3945.36 for Chrome 79) in java. The span heavily nested, but by itself simply: <span id="nodeval" title="Target...
View ArticleGetting a warning message on running the simple code in Webdriver for login
Iam a beginner in Selenium WebDriver. I wrote a code to just navigate to a URL and login to that. Also to show a message in console of the string URL is correct as the current URL. The code is...
View ArticleHow to Click on Print button on Print preview page using Python or Robot...
I have a website, were I need to verify the print functionality. I have clicked on print icon on a website and it opened me a new window with print preview page. In this page, I need to click on print...
View ArticleHow to add testng parameters in a java main method?
I wanted to trigger the execution from a java main method instead of testng.xml file. My doubt is how to add the parameters to Java main method for the execution. I have found .addListener and...
View ArticleHow to get the URL of the current webpage in python?
Im using selenium and Im trying to change the driver to a new page it opens (same tab) driver.switch_to doesnt seem to work because i think its used when a new window is opened driver.current_url also...
View ArticleI keep receiving SyntaxError when I use execute_script command in selenium
So I'm using Python Selenium to do some automation and I used a execute_script to click, here's the segment of my code: WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.XPATH,...
View ArticleCall for global variable in JS block of Selenium Webdriver test (Python)
I have a string of numbers set by user. Defined in the beginning of the Webdriver test:numbers = input("prompt")Then I need to enter value of this variable by JS code like...
View ArticleHow to bypass Google captcha with Selenium and python?
I want to know how to bypass google captcha using selenium and pythonWhen i try to scrap something google give me captcha, can I bypass google captcha with selenium python.As an example it's google...
View Article