froth-webdriverio-framework 3.0.13 → 3.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/commonMethods/scroll.js
CHANGED
|
@@ -73,7 +73,7 @@ async function scrollIntoView(element){
|
|
|
73
73
|
// scroll to specific element
|
|
74
74
|
await elem.scrollIntoView();
|
|
75
75
|
// center element within the viewport
|
|
76
|
-
|
|
76
|
+
// await elem.scrollIntoView({ block: 'center', inline: 'center' });
|
|
77
77
|
|
|
78
78
|
}catch(error){
|
|
79
79
|
console.error(error.message);
|
package/config/web.conf.bs.js
CHANGED
|
@@ -23,7 +23,6 @@ const webbsconfig = deepmerge.all([commonmobileconfig, {
|
|
|
23
23
|
{
|
|
24
24
|
'bstack:options': {
|
|
25
25
|
projectName: process.env.PROJECTNAME || "roboticodigital",
|
|
26
|
-
|
|
27
26
|
browserName: process.env.BROWSERSTACK_BROWSER || 'chrome', // Choose the browser you want to test
|
|
28
27
|
browserVersion: process.env.BROWSERSTACK_BROWSER_VERSION || '129', // Specify the browser version
|
|
29
28
|
os: 'Windows', // Specify the operating system
|