Questions tagged [getgauge]

Questions about Gauge, Cross-platform, multi-language test automation framework.

Gauge, Cross-platform, multi-language test automation framework. https://gauge.org.

109 questions
8
votes
2 answers

How to set log level when running Gauge tests via Maven plugin

When running my Gauge tests via mvn gauge:execute -DspecsDir=specs the console output is polluted with DEBUG output. 16:33:46.950 [main] DEBUG org.reflections.Reflections - could not scan file META-INF/MANIFEST.MF ... 16:33:46.951 [main] DEBUG…
benny.la
  • 1,212
  • 12
  • 26
5
votes
2 answers

Taiko Automated Tests - get DOM element

What is the best way to get a DOM element in a Taiko test? In the browser console I can do: element = document.getElementsByClassName("XXXX")[0] I've tried element = await $('.XXXX').get()[0]; using Taiko's $ selector…
Ryan
  • 51
  • 1
  • 3
5
votes
4 answers

Exception when running ChromeDriver with WebDriverManager in maven project

I am getting an exception when trying to open the ChromeDriver using WebDriverManager in a Maven project. The framework I am planning is tended to pull the ChromeDriver from WebDriverManager after adding the dependency in the pom.xml and is intended…
4
votes
1 answer

what are concept and specification files, they can create from file-> new in android studio?

I see two options named concept and specification in new in android studio. what are these files and what are they do? Thanks in advance.
Anice Jahanjoo
  • 7,088
  • 3
  • 20
  • 29
4
votes
2 answers

How to achieve drag and drop in taiko browser automation tool?

Using taiko automation tool, we have completed a few level of automation testing for our application in browser. To proceed further we need to achieve a drag and drop option, which is one of the necessary steps in our application. Gone through…
s p
  • 789
  • 1
  • 6
  • 23
3
votes
1 answer

How do I validate responses with Gauge (getgauge.io)?

I've looked in the documentation and sample C# project: http://getgauge.io/documentation/user/current/ However, I'm not sure how to validate the response from a "Step". Maybe Gauge isn't the right tool for this but I'm trying to validate the format…
2
votes
0 answers

Gauge python in VScode : Unable to debug external code

Gauge VS code extension : 0.1.0 getgauge : 0.3.17 Issue: Trying to debug external code (Framework library) from Gauge test, but keep getting warning and the debug happens only on my current file Frame skipped from debugging during step-in. Note: may…
Naga
  • 77
  • 1
  • 6
2
votes
0 answers

Failed to start gauge API: Runner quit unexpectedly

Trying to do run Automation test Getting below mentioned error I am getting below issue while i am trying to run my Gauge test can some one please help me on this issue usage: GaugeJava -- Error…
gss
  • 21
  • 3
2
votes
1 answer

Unsupported Gauge Version: This veuge Inrsion of Gatellij plugin only works with Gauge version >= 0.9.0, spec files steps are shown unimplemented

//unexpected gauge plugin error comes I'm completely new to gauge and asked to create a sample gauge project as POC, followed the official documentation but got the error and couldn't come across and i'm stuck here Steps followed: JDK 1.8 was…
2
votes
1 answer

Gauge Taiko: given selector list/count encountered itens

I'm using Gauge/Taiko to automate some scenarios and I'm struggling with some basic stuff. Given a selector that match N elements: is there a way to list/count those elements? Today even I provide a selector that matchs N elements, it returns only…
2
votes
2 answers

Taiko throws Error: Failed to launch chrome No usable sandbox

I am trying to run Gauge/Taiko however I am getting an error just at the very beginning when I only issue openBrowser() command. My OS is Debian 9 Stretch and I use local Gauge/Taiko installation. The error seems to suggest I need to update my…
M-K
  • 96
  • 1
  • 8
2
votes
1 answer

gauge framework exception

I'm starting to use the Gauge Framework to to some tests. I have some validation methods that return a custom Exception called FieldFunctionException when the value tested is not valid. To test that in Junit, I used something like…
2
votes
0 answers

Skip Gauge test dynamically

I'm trying to find way to skip Gauge execution dynamically (with ignoring all next steps but without failing). For example I have some spec Before test =========================================================== * Before…
gad_gadskiy
  • 160
  • 1
  • 11
2
votes
1 answer

Gauge Framework and Allure Report integration in multimodule maven project

I use Gauge framework for my automated testing and I'd like to use Allure to generate reports. Unfortunately, Allure hasn't adapter for this. My project consists of several modules, each of them has its own pom.xml. Main pom.xml (fragment): …
1
vote
0 answers

How to get information about exception thrown in AfterScenario hook in Gauge framework?

I'm using Gauge framework with Java as part of the automation suite. We get the information whether a scenario is failing or not from the isFailing flag in executionContext.getCurrentScenario(). But can we get the reason it is failing - if…
Rahul Sankrutyan
  • 73
  • 1
  • 2
  • 10
1
2 3 4 5 6 7 8