When trying to consume data from XML in the project in Quantum Perfecto, I am getting Lexing error. I have attached the scenario with this and the error.
Evern the same error is seen in quantum starter kit project too.
#GettingToKnowYou
Feature: Verify the Borrower can Navigate through Getting To Know You Pages
#GKY #Test
Scenario Outline: Verify Borrower complete Getting To Know You Page
Given User already Signed with "<emailaddress>" and "<password>"
Examples: {'key' : 'blenddata.borrower.dataset'}
You didn't provided details of the editor you are using. This looks like error from editor and not related to quantum project. I hope you will be able to run your test without any issue. You can try using qaf bdd editors.
Furthermore you can start using BDD2 syntax instead of Gherkin. BDD2 is advanced syntax and compatible with most of the gherkin editors. In BDD2 syntax your feature file may look like below:
#GettingToKnowYou
Feature: Verify the Borrower can Navigate through Getting To Know You Pages
#GKY #Test
#key:blenddata.borrower.dataset
Scenario Outline: Verify Borrower complete Getting To Know You Page
Given User already Signed with "<emailaddress>" and "<password>"
In run configuration for feature files which is written in BDD2 you need to use BDDTestFactory2
Related
I'm using faker for random information but avtar is unable to open and showing error by clinking this link https://cdn.fakercloud.com/avatars/victor_haydin_128.jpg
and i had updated all to latest version.
Please help me to solve this issue
The fakercloud.com domain has expired, and the author appears to have wiped out the whole project for political reasons.
Based on the unreliability, I'm transitioning away from faker at this point, but if you want to continue using it, you could fork a previous version of the code and change the hard-coded link from fakercloud.com to something that works (either something you control or another similar service).
Is it possible to change code (html, js, css) in Lightning Web Components online in Salesforce?
Something like this
I don't know to run it according this manual.
Because I would like to check code imported from VSCode. It seems to me that the code/component is not updated.
there is a variety of chrome extensions available to view and edit the LWC code within the salesforce. I am using the following:
To view the code only you can make use of the Salesforce Assitant extension:
https://chrome.google.com/webstore/detail/salesforce-assistant/acpngnlieelljdlljmenkagbonaicccj
.
.
If you want to edit the code as well, then you can consider salesforce advance code searcher:
https://chrome.google.com/webstore/detail/salesforce-advanced-code/lnkgcmpjkkkeffambkllliefdpjdklmi
Currently, you can't "import code online".
To check if your code been deployed correctly you can use chrome devtools and see if your files been deployed and used.
There is a cache machanizam also which you can disable -will reduce performance
https://www.salesforcecodecrack.com/2019/09/disable-browser-cache-during-lightning.html
For more info regarding debugging LWC check out this article:
https://developer.salesforce.com/blogs/2019/02/debug-your-lightning-web-components.html
Hi I'm trying to make an offline version of this page:
https://u-he.com/tools/microtuning/ the script is writtin with Angular JS how do I do that?
I saved the page control-s and copied the file to the local server I'm running.
And then I browsed the local ip. the page opened but I get repeated notes ng-repeat shows up as multiple boxes instead of 1 box that edits the same note but in different octaves.
How do I solve this problem please.
You can inspect the front-end code in your browser console. In Firefox it's in the section called "Debugger", in Chrome it's called "Sources". If you use Safari, you need to enable Developer mode first.
Once you have the appropriate view, just click on u-he.com -> tools/microtuning/ -> index
Hopefully it goes without saying that you shouldn't use large swaths of another person's code without at least giving appropriate credit, or better yet getting the developer's permission, unless there is an explicit open-source license.
I tried to submit my web-extension (actually developed for Chrome) to the Mozilla Firefox Add-On Store but failed. I didn't find a privacy option (in the Chrome Extensions store it's possible to do this) which allows me to hide my extension there so that it could be accessible only by a desired link, so I published my extension there and set the Experimental option. But, it was rejected with the following reason:
Due to the limited/non-public audience of this add-on, this add-on is not suitable for being listed. Please submit a self-hosted version and distribute the signed file yourself. Fore more information, see https://developer.mozilla.org/en-US/Add-ons/Distribution
In other words, I want that my extension will be hidden in the Mozilla store and my users could download and install it only if I share a link with them.
Does anybody know how to do this? Because, as far as I can see I can do this as the Self-distributed (unlisted) version but in this case, I need to share this signed version by myself as the .xpi file. The main problem in this approach is that I'll need to send updated versiona to them as well, am I right?
Yes, you are right. You have to submit your extension to the AMO in order to be signed. Here, the work of Firefox is ended and you have to manage your own extension. Check this for reference, it is the most updated doc I could find for this.
Note that, you have to specify in your manifest how the extension will be updated. Check out this.
Then, you can host it in your own server and provide a link to your users.
I haven't test the above, so proceed with caution.
i tried following the steps mentioned "https://github.com/watson-developer-cloud/document-conversion-nodejs" and is able to load the app which works well with sample pdf file.
But when i try using my pdf file it throws error "Missing required parameters:
either params.file or params.document_id must be specified"
Also in the above mentioned git hub link the step 7 is not clear, it mentions run node setup.js but i am not able to find out that file.
has anybody faced this kind of issue.Kindly reply.
Thanks for pointing out the confusing step 7 in the document-conversion-nodejs repo. That's not a valid step and I've submitted a pull request to remove it.
You should be able to change the sample files with your own, if this is what you are trying to do. I would need to see some of your code to maybe figure out what is going on with it.
There is an alternative repository [watson-developer-cloud/node-sdk] that you also can use to create your NodeJS application. It also has an example (examples/document_conversion.v1.js) on how to run the service.
Besides entering your service credentials, all you need to do is place the document you want to convert in the "resources" folder and point to it in this line:
fs.createReadStream(__dirname + '/resources/YOUR_DOCUMENT')
The tutorial and the API documentation could also be of help.