Accessing/Viewing table on a webpage - web-scraping

I am very new to web scraping and I am trying to scrape:
https://www.oddsportal.com/soccer/turkey/1-lig-2019-2020/results/
Browser: Chrome
I am trying to scrape the table and then use it in beautifulsoup.
When I click on the table, I am not able to highlight the html for the table and hence, unable to proceed further.
Am I doing it right? Or am I looking at the wrong place for the table?

You need to click "inspect element" at the place I want to inspect and not the general area

Related

How can I click an element in a drop down menu with RSelenium from a webpage?

Im trying to change the date from a drop down menu from this website (https://es.investing.com/equities/banco-santander-historical-data) using RSelenium in R to obtain data from previous dates
.
However its imposible to inspect those elements and select them, so i can't figure out a solution.
I've tried this
But it doesn't seem to work. Can anyone help me?

xamarin forms UWP app - how to create a "open file" dialogue that looks / feels similar in concept to MS Word?

I need to create a GUI that works similar to this:
So specifically:
I'd like to have a split screen where first on the left, i show a static list of locations... like local workspace and a sharepoint site.
and then depending on what they select on the left ... the right side of the page updates.
Can I use a grid for this? Or what's the best way? I just need some key words to google or youtube search. thank you!
Use a StackLayout (I think it will fit well to this case) and a Grid.
Inside this Grid, you can set 2 columns.
For columns (the static that you mentioned) you can put OR labels OR a ListView.
As you said: "depending on what they select on the left ... the right side of the page updates." It reminds me a Search Page, or... SearchBar!
This link will help you to create this SearchBar. The only thing that will change is the layout (put SearchBar on the left and the resultList on the right).
With this steps, you can customize and create something like in the photo.
If has any doubt, please, update your question with what you did and we will help you. Have fun.

How to get hidden values in robot framework

I'm trying to get text in text-area. But not able get it from xpath. How can I get it from any other way?
You are actually not using the correct xpath. There should be a way to identify the content that is there on the screen. The screenshot shows you are using firepath, so click on the data , or check the source for the divs and ids of the data being displayed, if you inspect that page you can find these details.

Get CSS computed style during web crawl

Is there a way for me to get an element's computed style from a page source? Or, if not from the page source, some other way? I want to be able to go to a web page and then get all the computed styles (via my code; I'm not talking about opening a browser tab and clicking Inspect element). Right now I'm using Python BeautifulSoup to get and traverse the document. This gets me all the elements and their attributes, but not the css styles. Ideally this would be with Python, but I'm open to using other languages.
(Sorry, if this has been answered before. I looked at several questions and they all seemed to have to do with getting the info either from "inspect element" or from your own personal page using javascript.)
I'm using PhantomJS. I inject a JavaScript script into the page that runs getComputedStyle.
You can look for CssParsers like the following
http://www.modeltext.com/css/index.html
http://www.codeproject.com/KB/recipes/CSSParser.aspx

Showing Editors on click of a node in Xtratreelist

I am using the latest version of DevExpress XtratreeList and have a requirement of showing editors on click of each node on the tree. Please see this screenshot http://community.devexpress.com/forums/p/89574/310095.aspx
I am wondering how i can dynamically save and render a specific editor(rather a form) per node on the treelist. Clicking on "Friends" in the screenshot should bring up a different editor as compared to clicking on "Parties". Also, if a user tries to add more objects on the editor for Parties/Friends like say a Textbox/Listbox, it should be saved and come up fine when i click the nodes. Does anyone have ideas regarding how do i dynamically bring up different editors on click of a random node on the lefT?
This can be done by handling the TreeList's FocusedNodeChanged event. All you need to do is to determine the current FocusedNode and its values and show the required editor.

Resources