Selenium Java code integrating with Jmeter
I have 2 questions: I was able to develop selenium scripts and then export as jar file and then import in Jmeter.The whole flow worked but that's for only one request/user. if I wanna run concurrently...
View ArticleInstagram sign up blocked [closed]
I am trying to build a bot in python using selenium. All works great but once I create one account then I am not able to create another one.Is it due to the IP getting temporarily blocked?If so how...
View ArticleHow to I click on a chrome extension? I am trying to enable a chrome...
`driver = webdriver.Chrome options = webdriver.ChromeOptions() options.add_extension('my_chrome_extension.crx')I don't know how to open it (python)`
View ArticleSelenium drop down list selecting issue
I'm new to selenium and html. I'm facing an issue with selecting values from drop down list. I located the element but when I run the test I get error msg "unable to locate element"<div...
View Articletrying scrape this page with selenium and python
I'm trying to scrape this page/iframe with selenium/python but I can't insert any text in this selected form.linkfrom selenium import webdriver from time import sleep driver = webdriver.Firefox() url =...
View ArticleHow to fix Upload image to twitter with Selenium (Python)
Currently i am trying to upload a image to Twitter for my reply bot. The current code i have gives no errors but it also doesn't attach the image. I've tried many approaches but i can't get it. Here is...
View ArticleClick a graph icon using selenium
I am unable to click a graph icon in a Angular8 project.
View ArticleSelenium driver: find elements by xpath; how do i parse a level 2 table (i.e....
I asked a question to get me to this point here, except since this was a specific different question I have it separate, but let me know if this isn't the right place.I have this script:from selenium...
View ArticleCrontab stopping - broken pipe with ubuntu server
First-time user of AWS/EC2/ubuntu here. I'm having an issue running a python script (a web scraper, using chromedriver, selenium, beautifulsoup, etc) on ubuntu server using crontab. This is an EC2...
View ArticleIs there a faster (speed-wise) alternative to Selenium Drag and Drop Action...
I'm creating a bot for a matching game, where you drag and drop tiles onto another. Is there an alternative for Selenium Action Chains Drag and Drop that will finish faster?I've noticed that in...
View ArticleUsing Selenium to automate a process on Netsuite, how do I make the program...
I am automating a process for my work. I am new to python so sorry if this sounds dumb. But, I am using Python and Selenium to perform a task on Netsuite. I have written enough to code get to the page...
View ArticleTrying to press the copy button on this throwaway email site
Running into an error with Selenium I keep getting this traceback within my grab_email() function:Traceback (most recent call last): File "/home/user/PycharmProjects/xxx/run.py", line 19, in...
View ArticleHow to fix the error in enter_text(loc, td) method....
This question already has an answer here:What is a NullPointerException, and how do I fix it? 12 answersThis code is a program to real data from string and uses it to test in on the website login page....
View ArticleUpload file via selenium if 3rd party api service is using to upload file
Here is page im trying to upload file with selenium/python<div class="form-group-inner photo-form-group-inner success icn-item"><span class="label">Photo ID</span><div...
View ArticleParallel For Loop Selenium C# - NOT A TEST
I wanna make a parallel For loop that will open an some changed link. But I get an exception when I'm doing it in parallel..Any Help? I searched for solutions online and only found ones that are using...
View ArticleWhy is this class method returning 'null'?
I have a class in my Selenium framework that is responsible for getting a fresh driver object and passing it to the tests for use.But for some reason, it's returning a null error and I can't figure out...
View Articlewebdriver-manager update throwing Error: connect ETIMEDOUT
I'm getting ETIMEDOUT error while installing webdriver-manager updated. Find the error details as below:C:\Users\....> webdriver-manager update webdriver-manager: using global installed version...
View ArticleSelenium - How to find color of a pixel on canvas on X Y position?
I'm using selenium with python and I have a problem: I wanna get pixel color of x y position on canvas.Does selenium have some collor picker or something simmilar?I tried get color of a pixel with...
View ArticleHow to loop and send values in array to multiple textboxes in selenium with...
I am trying to loop array and send each value to different TextBoxes or inputs with Selenium using Python.textBoxes = bot.find_elements_by_tag_name('textarea') for title in titles: for box in...
View ArticleControl is not transferred to onExcption method when a TimeoutException...
I am using EvenfiringWebdriver and code executes fine. I am intentionally giving a wrong xpath so as to make sure my framework captures NoSuchElementException or TimeOutException and later i will...
View Article