@@avinashdudala9490 I havent looked into robot framework anytime but it is the normal javascript code only buddy. So if u knew how to use the javascript in that framework then you can use this easily
It is same in C# as well, except the javascriptexecutor reference creation. IJavaScriptExecutor jsExecutor = (IJavaScriptExecutor)driver; jsExecutor.ExecuteScript(); Javascript code is not changed for java and C#, replace with actual javascript code
📌 JavascriptExecutor Playlist Link: bit.ly/2FhNXwS
✴ Checkout my other playlists: bit.ly/3gLIAVL
☕ Buy me a coffee: bit.ly/33ljBWc
your video should get alot more likes and comments
Thanks buddy 😊
Very nicely explained.
Thank you! 🙂
very nice explanation bro
Thanks buddy 😊
nice explain keep uploading
Thankyou
Super this is raja reddy i liked ur videos if u can do a video on github and jenkins series it will be a great
Sure Raja Reddy, but it may take some time.
Hi how to get css color property using javascript when element doesn't have style as attribute directly on element?.
Try this:
var backgroundColor = window.getComputedStyle ? window.getComputedStyle(myDiv, null).getPropertyValue("background-color") : myDiv.style.backgroundColor;
@H Y R Tutorials hi actually iam using Robot framework appium in mobile device can you sent me code snippet how to use above syntax in robot framework
@@avinashdudala9490 I havent looked into robot framework anytime but it is the normal javascript code only buddy.
So if u knew how to use the javascript in that framework then you can use this easily
I want to perform the same operation Visual Studio using C# How can I achieve it
It is same in C# as well, except the javascriptexecutor reference creation.
IJavaScriptExecutor jsExecutor = (IJavaScriptExecutor)driver;
jsExecutor.ExecuteScript();
Javascript code is not changed for java and C#, replace with actual javascript code
I am having issues to get click for tag where Log ....any guidance?
You have the ID for the link so you can directly use the same to click.
What is the error you are getting buddy?