beatfactor on v2.6.13
beatfactor on v2.6.13
beatfactor on v2.6.12
beatfactor on main
2.6.13 (compare)
beatfactor on v2.6.12
beatfactor on main
2.6.13 (compare)
beatfactor on main
npm audit fix (compare)
beatfactor on main
npm audit fix (compare)
beatfactor on main
fixed test suite index in summa… 2.6.12 skip unstable test (compare)
beatfactor on main
fixed test suite index in summa… 2.6.12 skip unstable test (compare)
lower-case
function like /html/body//text()[contains(lower-case(.),'test')]
, so I can match text case insensitive. But couldn't make it work in Nightwatch.js.
@vikramarka This we tried with nightwatch execution will generate a html report. But we are looking for generating the html report with nightwatchjs_exporter as shown below. We cannot add such argument --reporter html-reporter.js in nightwatchjs_exporter. we can get only failed snapshots not html reportes
./nightwatchjs_exporter -n /home/opc/nightwatch/node_modules/nightwatch/bin/nightwatch -t /home/opc/nightwatch/node_modules/nightwatch/bin/ --delay=10
containsText
is not correct command for that.
getValue
requires a callback method too so it's better to use assert.value
directly
Hi. I'm trying to run my nightwatch tests on headless firefox, but can't get it to work. My config includes
firefox: {
desiredCapabilities: {
browserName: 'firefox',
javascriptEnabled : true,
acceptSslCerts: true,
acceptInsecureCerts: true,
firefoxOptions: {
w3c: false,
headless: true,
args: [
'--enable-features=NetworkService,NetworkServiceInProcess',
'--ignore-certificate-errors',
'--disable-web-security',
'--window-size=1920,1080',
'--disable-extensions',
'--start-maximized',
'--disable-dev-shm-usage',
'disable-infobars',
'disable-notifications',
'--log-level=3',
'--headless'],
prefs: {
any ideas what I'm doing wrong? Thanks.
describe
thing. you can set unit_tests_mode:true
in your nightwatch config and you are ready go. Below is the simple example of it. For more information on unit test cases you can refer this. Hope it helps 😃const add = require('./add');
const assert = require('assert');
describe('Adding two numbers',function (){
it('adding two numbers',function(){
const sum = add(2,3);
assert.strictEqual(sum,5);
})
})