All Questions
1,027 questions
0
votes
1
answer
117
views
System.InvalidOperationException : session not created: This version of ChromeDriver only supports Chrome version 135
I know there are so many threads regarding this but my issue is a bit different.
My Browswer version is 134.0.....
My ChromeDriver Version is 134.0...
and Chrome Version 135 is not available yet for ...
0
votes
1
answer
45
views
AWS Lambda Selenium Error in C# : WebDriverException - Exec format error running Chrome
I am trying to download a file from Chrome using the Selenium library in C#. It works locally, but when I deploy the Lambda function on AWS, it throws an error:
Exception Type: WebDriverException,
...
0
votes
0
answers
41
views
C# Selenium - Getting a message Unable to receive message from renderer on local machine as well as in Devops
I am getting an error message like below even though the test scenario is getting executed correctly and the testcases are getting passed. This error message is displayed in my local machine as well ...
2
votes
1
answer
85
views
Why does ExecuteCdpCommand not work with WebDriver
We have a regression suite which we run on Chrome with code created in Visual Studio/C# and Selenium.
Part of the startup code is shown below
protected static ChromeDriver? Driver { get; set; } = null;...
0
votes
1
answer
80
views
SessionNotCreated using Selenium in the Chrome Docker Container
I created a .Net application using Selenium. Everything is working fine locally, but when using my application in a Docker container I'm always receiving the following exception
System....
0
votes
0
answers
49
views
How can i change the screen orientation to Landscape in Selenium C#?
I am testing a webMobile version of a website. I need to change the screen orientation to landscape, but I can not find any appropriate code.
Here is what I did:
((IJavaScriptExecutor)driver)....
0
votes
0
answers
39
views
How to hide Icon chrome when use selenium C#
I'm working with Selenium and have to use it show up but not in headless mode.(Already setting position for browser, Because there is an capcha image on the Website I have to capture so cannot use ...
0
votes
0
answers
80
views
Selenium Tests Failing on GitLab CI Runner (Windows) and Seeing White Screen in Headless Mode Locally
I'm encountering an issue with Selenium tests in a .NET/C# project using the NUnit framework, and I’m seeing two related issues between my local machine and the CI environment.
Setup and Issue ...
0
votes
0
answers
31
views
If the user is logged in, it cannot find the element and gives an error
When you find the login button on the relevant page, there is no problem and it works fine. However, if the user is logged in to the page, normally the Login button cannot be found and the program ...
0
votes
0
answers
33
views
Interact with proxy settings prompt window via ChromeDriver
In my Selenium scenario I have to load some Internet site via proxy. I setup proxy settings in my code and everything works good, but intermittently I get this prompt window in Chrome:
This window ...
0
votes
1
answer
152
views
How to take screenshot of the browser including the URL and tabs using Selenium and C#
How to take screenshot of the browser including the URL and tabs using Selenium and C#?
This is how the screenshots look today
This is how the screenshots will look after change
The difference is - ...
0
votes
0
answers
633
views
C# Undetected Chrome Driver Cloudflare Error
I'm trying to write a small automation script using C#. However, I'm getting stuck on a Cloudflare CAPTCHA on a website I'm using for the content. Despite my best efforts, I haven't been able to ...
0
votes
0
answers
64
views
Selenium WebDriver(ChromeDriver) Error When Another Screen Is Open Behind
I am trying to use ChromeDriver. I am using a specific Chrome Profile and I get error when another screen is open behind.
Here is my codeblock works fine when there is no screen behind.
ChromeOptions ...
1
vote
1
answer
88
views
Selenium IWebDriver(ChromeDriver) doesn't work properly when another window is open
Here is my code that works properly.
ChromeOptions options = new ChromeOptions();
options.AddArgument(@"user-data-dir=C:\\Users\\mypc\\AppData\\Local\\Google\\Chrome\\User Data");
...
1
vote
2
answers
118
views
C# Selenium ChromeDriver Leaking memory
I'm seeking assistance as I've noticed that selenium chromeDriver in c# has not properly been releasing memory. I've been using RamMap to track memory usage. When not running the following scripts, ...