11,305 questions
1
vote
1
answer
68
views
C# Selenium "window.angular is undefined" when waiting for elements to be displayed
I have a C# automation framework with Selenium, Webdriver and XUnit.
I have the following issue on my app, but I will give you an example using StackOverflow page, as I get the same issue.
I have a ...
1
vote
1
answer
324
views
"InvalidArgumentError missing field 'capabilities'" after mozilla geckodriver updated to 0.35v
Last week Mozilla's geckodriver released the new 0.35.0 version, and since then the tests I'm running using Jenkins aren't running.
In the console output I've noticed the error that I put on the title:...
1
vote
1
answer
346
views
[Protractor]: session not created: This version of ChromeDriver only supports Chrome version 114 Current browser version is 121.0.6167.139
I'm trying to run end-to-end testing using Protractor having chrome version 121.0.6167.139, for this I have done following steps:
webdriver-manager update --versions.chrome=114.0.5735.198
webdriver-...
1
vote
0
answers
228
views
Protractor: Webdriver-manager update downloads an incompatible version of chromedriver
Chrome Browser version in my machine 116.0.5845.111 (Official Build) (64-bit).
But Webdriver manager downloads chromedriver_114.0.5735.90.
Error:
E/launcher - session not created: This version of ...
5
votes
0
answers
3k
views
webdriver manager update only to chrome driver version 114
I am still using protractor for automated testing. I got the latest chrome driver version 116 and chrome browser version 116.
I tried running npx @puppeteer/browsers install chrome@stable to get the ...
3
votes
1
answer
973
views
My chrome version got updated automatically to 115 version and when i run webdriver-manager update command why its downloading 114 version of chrome?
My chrome version got updated automatically to 115 version and when i run webdriver-manager update command why its downloading 114 version of chrome? Even i tried to download 115 version directly and ...
0
votes
1
answer
348
views
Access AngularJS's scope in Playwright (migration from protractor)?
i'm facing a small (i hope) issue, for personal purpose i need to migrate from protractor to playwright, i add a lot of steps working well without any issues, but now i'm stuck, the migrate protactor'...
1
vote
0
answers
29
views
Is there a way to get the jasmine report without actual execute cases?
I'm using jasmine framwork and want to get a jasmine report without actually execute cases. It should be something similiar as the 'dry run' in mocha framework.
And in the report, i want to get the ...
2
votes
0
answers
252
views
Can't run protractor tests with selenium hub 4
I am trying to run my protractor tests using a selenium hub. I follow the official selenium hub instructions to run it using docker. Basically the commands are as follows:
After that, I change the &...
1
vote
2
answers
1k
views
How to capture scenario result in cypress-cucumber-preprocessor?
I am Migrating Protractor Cucumber framework to Cypress using cypress-cucumber-preprocessor
I need to capture Scenario run result -pass or fail value also the scenario name
Earlier with cucumber,the ...
-1
votes
1
answer
47
views
how to re-use same IT blocks in multiple spec files
in protractor, i have 20 tests (IT block) in a spec file.
and we have few different spec files only the difference between each spec file is before block.
Spec A
Spec B
Spec C
so, 20 tests from Spec A ...
1
vote
1
answer
363
views
Getting page content via XMLHTTPRequest
I am using Protractor for my testing. I have 100 links on a page, rather than clicking on each link and checking the page content I am trying to get the page content via XMLHTTPRequest. I am passing ...
0
votes
1
answer
373
views
How to get the value of Element that is Disabled and not present in DOM
I am using Protractor for Automation. I am trying to verify value of element present in the model window. the element is disabled (greyed out) and not present on the DOM.
How to get the value of this ...
1
vote
1
answer
116
views
Testing Angular - How can I test disabled field using Selenium Protractor?
In MEAN stack project I am using Selenium webdriver for frontend UI testing.
I have a field which is non editable. I have attached an image
Image
How can I test this field making sure it cannot be ...
1
vote
0
answers
47
views
Chrome is not launching when i execute protractor code in jenkins while doing automation testing
When I try to run protractor code in jenkins , chrome browser is not launching but the code is executing in jenkins and it is printing failure.Can i know how to launch the chrome browser so that my ...