Questions tagged [x-ray]

x-ray is a web scraping library for Node.js. It can use various pluggable drivers such as HTTP or PhantomJS.

Resources:

107 questions
0
votes
1 answer

Cypress tests integration with Xray (Jira) through Github

I hope you all are doing good. As, the title suggest what I am trying to do is I have e2e tests in cypress and I want them to be integrated with test management tool xray that we have in Jira (Write tests in cypress, execute them in CI i.e. github…
Hamza
  • 165
  • 1
  • 1
  • 11
0
votes
1 answer

X-ray + browserstack we want to integrate X-ray with browserstack

The testcases which we want to automate are present in X-ray and the webdriver.io franework in which the automated testcases are present is running on browser stack. So is there any integration present for this? that we create a testplan in X-ray…
0
votes
1 answer

Get image-urls from imgur link in node js

I need to get the image urls from imgur post urls. The urls of the posts looks like this: https://i.stack.imgur.com/LPmGJ.jpg But the image urls look like this: https://i.stack.imgur.com/HyVaJ.jpg I tryed it with the web-scraping library x-ray js…
0
votes
1 answer

Xray for JIRA Jenkins Plugin, TestNG XML Results Import task failure

this is my 1st question, any help will be greatly appreciated. I need to import test results from Jenkins to Xray. To do so I: set up Xray for JIRA Jenkins Plugin; configured Xray Server/DC integration with Jenkins; tested connection and it's…
Irina
  • 11
  • 3
0
votes
1 answer

NodeJS xRay module object string html remove

I extracted product names and product prices with xray module of nodejs. While I was scraping, some htm lexpressions like /n comes with text. I want to replace all html codes and create objects with replaced versions. I have codes like this: var…
burak
  • 1
  • 1
0
votes
1 answer

What permissions need to be included for AWS step function role to enable X-ray?

I'm currently looking at some resource on how to enable X-ray for my stepfunction statemachine, from this tutorial: https://docs.aws.amazon.com/step-functions/latest/dg/concepts-xray-tracing.html#xray-concept-create "When you enable X-Ray for an…
0
votes
1 answer

Not able to parse description from feature file when trying to import Cucumber tests into XRAY

I am trying to import this feature file into XRAY in order to create a new Cucumber test in XRAY. As of now Description field is mandatory for creating any test in our Xray project. How do we parse the description from the feature file? What id the…
0
votes
1 answer

Matlab loop x-ray

So I'm doing some pixelvalue comparison, and I have trouble looping some stuff. I'm gonna do some X-ray reconstruction in 128 energychannels, but I'm only able to analyse 8 channels at a time. sinogram_data=sinogram_data(1:8,:,:,:); images =…
Oliver
  • 1
  • 1
0
votes
1 answer

How to pass dynamic values to an environment block during the pipeline execution in Jenkins?

This is related to one question I asked before: Using groovy to parse JSON object in shell scripts for Jenkin basically I will need to pass a dynamic value as returned from sh scripts to an environment block, so that the following stage can re-use…
Huibin Zhang
  • 1,072
  • 1
  • 15
  • 30
0
votes
2 answers

Why am I getting stuck in an infinite loop when trying to use this github project?

I am trying to use a Java Maven program that will allow me to import XRAY Cucumber tests off of a JIRA page using the RESTful API and am running into an issue with the demo where I am getting stuck in an infinite loop. Here is the project link that…
0
votes
1 answer

How can I process many micro-CT images by using Julia language?

I have 1000 jpg images and I need to make them into a stl file so It can be printed in 3D. I'd like to do it in Julia since it's a language I'm familiar with. Maybe there's libraries for that in another language... I don't know. Any suggestions or…
0
votes
1 answer

Is there a way to instrument Web/Javascript/ReactJS client for AWS X-Ray?

We are trying to see if we can collect performance as seen by Web application users (single page application using ReactJS, performance numbers that includes the client-to-server network/load time along with the back-end/DB server performance). I…
0
votes
1 answer

POST Error 500 Internal Application Error Xray

I am trying to import my cucumber test cases to Xray using postman but i receiving the error message: { "error": "Internal Application Error!" } I am using postman to do integration with Xray, I already can do a GET to get the test results, I…
Thiago
  • 33
  • 3
  • 9
0
votes
1 answer

How to get data from X-RAY from multiple region(N. Virginia and ireland) in ireland region. How could I do this? Any suggestion?

I have lambdas in N. Virginia and ireland region which put metadata on X-RAY and have another lambda in ireland region which fetch metadata from X-RAY. Now I want to fetch metadata from N. Virginia region in ireland region. How could I do this? Is…
ABCD
  • 730
  • 1
  • 13
  • 31
0
votes
1 answer

How to report the scraping progress of X-Ray?

Like I scrape 3 pages with the code below: var Xray = require('x-ray'); var x = Xray(); x('https://blog.ycombinator.com/', '.post', [{ title: 'h1 a', link: '.article-title@href' }]) .paginate('.nav-previous a@href') .limit(3) …
Franci
  • 2,157
  • 1
  • 21
  • 33