Not able to change default port in Winium Driver
**Even after specifying a port other than 9999, winium driver starts on 9999. How to change this default port? I am using the below code to start winium driver on Windows 10:My Code:public class...
View ArticleHow to find title="xyz" element with Selenium (Python)
I am trying to click an element with Selenium, that has a specific title attribute. I have tired do use an XPath before, however, the problem is that there are two buttons on the website with the same...
View ArticleFramework that allows to automate desktop applications
So, I'm a new(ish) QA automation intern at my company. Since I got in, I've been researching different tools and methods of automation. We have a web service that we can automate just fine. The thing...
View ArticleHow to locate XPATH for a desktop application
How can I locate XPath for an element in desktop applicationI am using Inspect tool to get the Name of an element. How do I create an Xpath from the Inspect tool? Can I use LegacyIAccessible.ChildId in...
View ArticleAny idea how I can click an iframe button in Dynamics using Selenium?...
Any idea how I can select a button in Dynamics which is part of an iframe?In the system in question there is a single button that is in an iframe, once clicked it changes to a dropdown list with a list...
View ArticleWebStorage with RemoteWebDriver
I am trying to access WebStorage when running my tests, I am running tests locally using ChromeDriver and remotely in the pipeline using RemoteWebDriver.I am unable to access WebStorage when using...
View Articlechromedriver.exe is ALREADY in PATH but still getting error message
I was writing on VisualCode studio, but I keep getting the same error message.selenium.common.exceptions.WebDriverException: Message: 'chromedriver.exe' executable needs to be in PATH. Is it simply...
View ArticlePython selenium 'list' object has no attribute 'text' error
I'm trying to copy text from comment on a website<span class="auto-link">yes</span> and my python code is element=browser.find_elements_by_xpath('//span[@class="auto-link"][1]')...
View ArticleHow to implement Java loop using selenium
// to search and delete driver.findElement(By.cssSelector("input[type='search']")).sendKeys("Diversification Rule Template"); driver.findElement(By.className("delete-template")).click(); Alert alert =...
View ArticleIEdriver in Selenium [duplicate]
I am trying to navigate between windows in IE.am using IE version 11 on windows 10 (64 bit) and updated IEdriverserver (2.39) for the same. But the code gets stuck after the new tab is opened.String...
View ArticleProtractor: How to properly wait after a click?
I am using Protractor for e2e testing. The tests should first enter too short username and passwords and because of Angular validators when clicked on a submit button (which is disabled) get rejected...
View ArticleScraping javascript table with a scroll using selenium
I am trying to scrape a table which is being generated through javascript but I am struggling. My code so far is:driver = webdriver.Chrome(); driver.get("https://af.ktnlandscapes.com/") # get table --...
View ArticleHow to scrape website with content rendering from angular JS with python
enter image description hereI want to scrape content from website: https://www.fireant.vn/App#/company-data/ACB.As far as i know, the content of tablea i want to scrape dynamically rendering data from...
View ArticleHTTP request to the remote WebDriver timed out after 60 second - IEDriver -...
I have a Selenium automation suite up and running with chrome which works like a charm. I have integrated IEdriver within. After integrating I executed few of the test cases and getting problem with...
View ArticlePython resolution?
I was trying to use a bot. But when I start the program, it says this error. How can I resolve it?Traceback (most recent call last): File "C:\Users\Mattia\Desktop\LoscoBox V.0.0.7\solebox fast...
View ArticleHow to hide the warning "This type of file can harm your computer" while...
Despite setting safebrowsing.enabled to true / false, the warning ...This type of file can harm your computer... is still being displayed in browser. How to hide this information?
View ArticleSave HTML table to external HTML file from password protected page
I need to pull whole html table from password protected page and save it to external html file.<table id="tblControlorStatus" class="dataTable" aria-describedby=""...
View ArticleUsing python selenium for Microsoft edge
I am trying to use pythons selenium for Microsoft edge but I keep getting this error:WebDriverException: Message: unknown error: cannot find Microsoft Edge binary I downloaded the latest version of the...
View ArticlePython 3.5 - "Geckodriver executable needs to be in PATH"
I added geckodriver.exe into PATH as you can see on this image and i restarted my computer after. But the error still show up.Here's my code :from selenium import webdriver driver = webdriver.Firefox()...
View ArticleUploading a file to shopify with Selenium and Python
I am having difficulty uploading files to shopify using selenium .. Selenium can't seem to find the input element I need to add my file to, I'm assuming it's to do with the input type=hidden part? See...
View Article