Questions tagged [browser-automation]

With browser automation a web browser can be instructed to repeat the same, possibly long task automatically or at will. In daily use browser automation can be used to fill forms, extract data from web pages, or provide authentication to a service. Browser automation is often used for automating testing of web applications. The same tests can be repeated after each change and in different browsers to verify correct behavior.

1104 questions
7
votes
2 answers

How to solve selenium firefox browser is under remote control?

I'm using selenium with firefox 82.0.3 (64) The code is working properly but the issue is that it is saying browser is under remote control. Is there any way to solve it or other ways to bypass it. What I actually want to do with selenium is to open…
7
votes
3 answers

How to handle browser or app may not be secure issue with web driver Selenium python?

I'm trying to automate sign in into gmail and I get to see this error. I think this must be because the website is able to detect the automation and blocking it. Can you all please tell me how to overcome this? I don't see this issue with my…
Abhishek Boorugu
  • 164
  • 1
  • 1
  • 12
7
votes
3 answers

Interact with browser JavaScript via command line or local script?

We offer browser-page JavaScript similar to imagemagick that helps people convert images to different sizes and formats. However, it requires webpage interaction. Is it possible to let people automate this interaction -- without sending images to…
Crashalot
  • 33,605
  • 61
  • 269
  • 439
7
votes
2 answers

How to automate Firefox Mobile with Selenium?

I need to run Selenium tests in Firefox Mobile. Could anybody describe an easy way to do this? My investigation shows that: Firefox Mobile is not supported in Appium (one, two). Firefox Desktop has built-in Responsive Design Mode like shown on the…
vania-pooh
  • 2,933
  • 4
  • 24
  • 42
7
votes
3 answers

Automate "Save as HAR with Content"

I am familiar with how to use the Google Chrome Web Inspector to manually save a webpage as a HAR file with the content. I would like to automate this. In my searches for tools to automate the generation of a HAR file, I have found some solutions,…
Teddy
  • 18,357
  • 2
  • 30
  • 42
7
votes
3 answers

Browser Automation with Selenium: Fingerprints, recognizability and traceability?

I want to use selenium/webdriver to simulate a browser and scrape some website-content with it. Even if its not the fastest method, for me it has many advantages such as executing scripts etc. For many websites it is forbidden to access them via an…
zwieback86
  • 387
  • 3
  • 7
  • 14
6
votes
3 answers

selenium and qt c++?

Is it possible to use selenium with qt c++ ? Seems like there are no official support from selenium for C++? http://seleniumhq.org/download/
001
  • 62,807
  • 94
  • 230
  • 350
6
votes
1 answer

Playwright fails to fill input

I'm running a Playwright script on a Jenkins page that has input elements. When I try to fill one of the inputs with text, it fails with this error: (node:3337) UnhandledPromiseRejectionWarning: page.fill: Protocol error (Page.insertText): error in…
Brady Dowling
  • 4,920
  • 3
  • 32
  • 62
6
votes
1 answer

Azure AD Based SSO using Playwright

How do we test SPAs which have Azure AD based authentication? When user opens the app, user is first sent to login.microsoftonline.com and on entering the user email the page redirects back to application home page. In this scenario, how do we…
code_blue
  • 523
  • 2
  • 9
  • 19
6
votes
1 answer

why is drag drop not working as per expectation in cypress.io?

I am trying to automate a simple drag and drop scenario on a website . https://gojs.net/latest/samples/htmldragdrop.html I am going as per the method provided in cypress…
Karan
  • 443
  • 5
  • 14
6
votes
1 answer

How can I read from a document.txt lines with emoji and show them on terminal when I run the ruby code?

I want to read a document file .txt in Ruby, but the following lines of this document contain emojis. When I run the program it shows me different symbols and not the actual emoji. I have already tried different methods. How can I do this, should I…
Astrit Shuli
  • 619
  • 4
  • 20
6
votes
1 answer

Using Testcafe with Appium

I'm searching for some time now how to use TestCafe with Appium. Long story short: testing env is a node.js env; automated test script is written in typescript using TestCafe; the plan is to execute those tests on desktop browsers and on mobile…
Eugen
  • 785
  • 6
  • 22
6
votes
4 answers

Puppeteer Delete Navigator.Webdriver

I m using puppeteer for scraping. I can pass navigator.webdriver property= false but i need to delete that prop completely. https://bot.sannysoft.com/ I tried with passing false to navigator.webdriver. This trick can pass on…
6
votes
2 answers

--skip-js-errors on specific test cases

I'm testing functionality that includes redirecting to an external page which I do not control. This page is throwing errors causing the test to fail. Is there a way to ignore js errors for one specific test only? (I want errors on my site to cause…
ioseph
  • 1,887
  • 20
  • 25
6
votes
0 answers

Reusing previously opened selenium window

I have been testing various automation tasks using Selenium Python library. I faced a very serious issue in that process. That is the delay caused due to poor internet connection. The starting steps are same for all tasks, namely - open browser - go…
1 2
3
73 74