Questions tagged [taiko]
11 questions
1
vote
0 answers
"Navigation took more than 30000ms. Please increase the navigationTimeout" - working locally but issue in GitLab pipeline
Steps to reproduce the behavior:
Open the browser (chrome) in headless mode
await openBrowser({
headless: headless,
args: ["--no-sandbox"]
});
console.log('Browser opened.');
gauge.message('Browser opened.');
Goto…

tester-mind
- 11
- 2
1
vote
0 answers
Is it possible to launch different url based on a specific condition in gauge and taiko using javascript
In the current gauge/taiko project, the application url and login credentials is configured based on different test environments inside user.properties file
Now, I have 2 different urls for the same environment. if I have to launch 2nd url and…

Vidhya
- 11
- 2
1
vote
1 answer
Click with waitForEvents cause Timeout error when using Gauge and Taiko
I'm using Gauge and Taiko (v1.3.2).
Gauge version: 1.4.3
Commit Hash: f98dd40
Plugins:
html-report (4.1.4)
js (2.4.0)
screenshot (0.1.0)
I have a form that have a Save button. I want click the Save button and make sure that the form is fully…

Ramin Bateni
- 16,499
- 9
- 69
- 98
1
vote
1 answer
Get response of a API request made using chrome-remote-interface
I want to get the response data for the particular API call using chrome-remote-interface.
I am not sure how to print the response. I am able to get the APIs that are being called using the demo code available in their GitHub repo.
Mentioned a…

Priyom saha
- 630
- 1
- 9
- 28
0
votes
0 answers
Countdown Component Running Slow in Taiko + Gauge Automation Test
I have a problem in Taiko automation test as countdown components running so slow. Actually, not just countdown component, everything running slow. You can see the case in video…

Desxz
- 1
0
votes
1 answer
How can we use multiple csv files in one spec file using Taiko+Gauge
I am getting error when I declare different csv files according to test data to different scenarios on specs level while using Taiko + Gauge.
Any one can help on this?
Reference:
specs with multiple csv files
eg.
table:specs/case_sclm.csv
Verify…

kalyani
- 1
- 1
0
votes
0 answers
Taiko/Gauge with Javascript unable to use Axios for request
So I'm trying to use Axios to fetch some data before the test begins.
the test step is defined as follows
const axios = require('axios');
step("GET google", async function() {
await axios.get("https://www.google.com/")
});
And I have a test…
user19906023
0
votes
1 answer
Need to extract value from UI using Xpath - using Taiko framework
Am trying to extract value from the field. I can use only Xpath to identify the field.
tried
$(xpath).text() - i think since am tring to extract vale it returned 0
$(xpath).value() - did not work
textBox().value() - inside text box am able to pass…

User05
- 1
0
votes
1 answer
Not able to open unsafe site even after using openBrowser({ignoreCertificateErrors: true}) in Taiko
The below site has a browser popup authentication, so I tried the following code.
https://e.clinique.na.us.rac-166-dec22-elb3.ncsastage.usva1.feature.elco.cloud/
openBrowser({ignoreCertificateErrors: true});…

Priyom saha
- 630
- 1
- 9
- 28
0
votes
1 answer
How to open chromium with half of screen-width and aligned to right screen-border?
I would like to set the window-position within the total available screen, so it takes up half of the screen-size and is positioned at the right end of the screen with its right border. Couldn't find any docs about it, maybe it's not possible?

Ida
- 3,994
- 21
- 40
0
votes
2 answers
How to launch Chrome browser instead of Chromium in Taiko
How to launch a Chrome browser instead of Chromium in Taiko? I am unable to launch Chrome or another Chromium-based browser.

Utkarsh Maurya
- 11
- 1