Ask a Question
Ask Question Login
Corporate Training
  1. Community
  2. Carol Bower

Carol Bower

Community Learner
Share
22Questions
21Answers
36.9KViews on questions

How can I set up my test environment to run the test in headless mode?

In the context of selenium, here are the steps given of how you can set up a test environment for automation of web-based testing using selenium with headless Firefox:- Install necessary Components Firstly, you would need to install the Python in your system. Then you should have the selenium library installed along…

QA Testing

Answered May 3, 2024 · 714 Views Read answer →

How can I guide the users through the process app?

In the context of Salesforce, here is the explanation given of how you can guide a user through transferring the Salesforce authenticator app for a new phone:- Install the Salesforce authenticator on the new phone Instruct your new user to download and then install the Salesforce authenticator app from the App Store…

Salesforce

Answered Apr 23, 2024 · 696 Views Read answer →

Building multi-regression model throws an error: `Pandas data cast to numpy dtype of object. Check input data with np.asarray(data).`

If X is your data frame, then try using the .astype method to convert to float when running the model: est = sm.OLS(y, X.astype(float)).fit()All categorical variables should be converted into dummy variables before sticking them in the model. This will revolve error: `Pandas data cast to numpy dtype of object. Check…

Python

Answered Jun 16, 2021 · 3.5K Views Read answer →

Can't connect to MySQL server on '127.0.0.1' (10061) (2003)

Getting the error “can t connect to mysql server on 127.0 0.1” means you are migrating the MySql database files to a new location. If you have already installed MySQL on a Windows machine make sure that it is running as a service. You can check by doing the following steps showm below: Start --> services -->…

SQL Server

Answered Jun 2, 2021 · 6.3K Views Read answer →

SQL Server - difference between instance name and instance id

By default, the instance name is used as the Instance ID can be used to solve sql server instance name. Instance ID is used to identify installation directories and registry keys for your instance of SQL Server. This is the case for default instances and named instances.

SQL Server

Answered Apr 24, 2021 · 3.4K Views Read answer →

How can I Update Field On Click of OutputLink in Visualforce?

I took the liberty of rewriting your component to solve apex:outputlink It seemed like you were trying to update the value of the contacts field by 1 when the link was clicked, and were starting out by setting the value directly to one. However, to run an action for components that don't support the action attribute,…

Salesforce

Answered Apr 24, 2021 · 1.1K Views Read answer →

GroupMember Types of a Public Group

Your code will look like this: List members = [ SELECT Id, GroupId, UserOrGroupId FROM GroupMember WHERE GroupId IN (SELECT id FROM Group where Id = :groupId) ]; List ids = new List(); for(GroupMember member: members) { ids.add(member.UserOrGroupId); } List lstGroup = [SELECT Name, RelatedId, Type, Id From Group WHERE…

Salesforce

Answered Apr 23, 2021 · 2.3K Views Read answer →

If:true is not working properly in LWC, Can anyone please explain?

The reason why if:true={value} equals false is because 0 value is falsy. if:true directive expects boolean context, thus making type coercion. I'd recommend you to use getters. In your case, it can be looked like (if you expect the value property of number type): @track value = 0; get hasValue() { return typeof value…

Salesforce

Answered Apr 22, 2021 · 975 Views Read answer →

More members from the Salesforce community

Learners asking and answering questions on the same topics — follow their questions and join in.

Latest Salesforce Blogs

Guides, tips and career advice on Salesforce from JanBask experts.

Learn & Explore

Free tutorials and interview questions from industry experts — learn the skill, then get ready to prove it.