Website blocking Selenium : is there a way to bypass?
This webpage opens fine manually, but directly goes to a "maintenance" error message when using Selenium !from selenium import webdriver driver = webdriver.Chrome(executable_path="chromedriver")...
View ArticleFind a specific text on a button
I have the following button.<button class="btn-standard buyButton currency-coins">Buy Now for 3k <button> I want to find if the button contains "Buy Now". I used something like this, but it...
View ArticlePython Selenium : Why url and page source don't change when in headless mode
I am writing some scrapping script in python and selenium. It works very well in non-headless mode in both chrome and firefox. Now, on switching to headless mode, strange things appear. My code first...
View Articlepython selenium send_key() is not working
i am new at automation. i am trying to enter a sting in the text box of Omegle and press enter but it is showing me an error :selenium.common.exceptions.ElementNotInteractableException: Message:...
View ArticleGet cookies from selenium session
I want to get session variable and cookies after login. i have used selenium webdriver and successfully login. but how to get session and cookies after login in selenium.here is my code:try { WebDriver...
View ArticleIs there a webpage that highlights mouse clicks to test mouse...
Is there a webpage that highlights mouse clicks to test mouse accuracy/automation?Ideally I'd like a blank screen that then highlights around mouse clicks momentarily before returning to blank after a...
View ArticleElement not visible using selenium for competition entry
I'm experimenting with automated competition entries using selenium. I've tried logging into gmail using the below code and it works fine. However, when trying on the website gleam the element does not...
View ArticleHow to build a keyword so I don't have to run login to all the features of a...
I wanna test the features about the website in my final project in my Subject about Testing. I literally beginner in this field and confused how to create keyword in robot framework so I don't have to...
View ArticleDocker: reach developed webpage from selenium/selenium-chrome container
I have a problem with running my EndToEnd tests with dockerized selenium/standalone-chrome. With docker-compose.yml I am creating the following containers:web: Django(python) project. I am trying to...
View ArticlePython selenium, clicking on links that dynamically load when we scroll to...
Consider this The links dynamically load when we go to the end of the webpage, but there isn't an efficient way if I have to scroll 10 pages to make a certain link visible. Is there a way to open all...
View Articleselenium 'nonetype' object has no attribute 'send_keys'
title='this is the title'I want to locate with python/selenium, within a web page, this line: <input id="subject" name="subject" maxlength="50" value="" class="nude error" type="text"> I use this...
View ArticleUnable to send emails using Interop.Outlook
I'm working on a Selenium test which generates a report and then sends the report to an email address when it's finished. The script works flawlessly up until I have to send the email report.The weird...
View Articleinput tags in html code change when using selenium
I have been using selenium to try and automate competition entries on Gleam. I had posted a question earlier about problems with finding tags but I eventually got it working by finding the iframe....
View ArticleNo internet or didn't send any data when use browsermob server with selenium
When using embedded mode in a selenium test, websites can't load, the error message is: No Internet, There is something wrong with the proxy server, or the address is incorrect. Below is my...
View ArticleHow to open Chrome browser using Selenium instead of ChromeDriver?
This is my current code using Chrome Drive and it works.from selenium import webdriver chromedriver = "C:/Users/Kamal Chhirang/Downloads/chromedriver_win32/chromedriver.exe"...
View ArticleUnable to login app as different user Selenium WebDriver C#
I have tried passing username and password in URL(ex: "https://username:password@domain.com"). We are able to login with different user successfully, but facing some issues like error as "Unable to...
View ArticleHover is not working in selenium test for Windows 8.1 and Firefox 60.4...
Hover is not working in selenium test for Windows 8.1 and Firefox 60.4 combination code is right its working fine with linux OS with same firefox versionI have tried it with Linux with same firefox...
View ArticleNot able to execute selenium test cases via Azure Devops release pipeline
I am trying to configure and run selenium test cases from Azure Devops Release pipeline. I did configured Visual studio Test Platform installer followed by Visual studio test. However while running the...
View ArticleSelenium use xpath to find sub element within already acquired WebElement...
I'm using selenium and python to test a website and I'm trying to get the link to the files on the site as follows: Use divs = find_elements_by_css_selector("div.answer") to get the posts on the page,...
View ArticleHow do I get one of list element
I'm new to Selenium and I struggle to get one of list element. Follwing code should work, but it doesn't.List<Weblment> el = driver.findElements(Byelement); el.get(0); //getText() I'm trying to...
View Article